def get_model_details(self, id): """ get details of the Time series from the database. :return: string, dictionary """ from utils.database_utils import DatabaseConnect db = DatabaseConnect() model_string, self.model_detail_dict = db.get_model_details( id, window=self.temp_window) return model_string, self.model_detail_dict
def get_model_details(self, id): """ Get the details of the Model from the database on the basis of provided id :param id: :return: string, dictionary """ from utils.database_utils import DatabaseConnect db = DatabaseConnect() model_string, self.model_detail_dict = db.get_model_details( id, window=self.temp_window) return model_string, self.model_detail_dict