You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"Unable to determine the datetime type for column: {self.dt_column_name} in dataset: {self.name}. Please specify the format explicitly. (For example adding 'format: %d/%m/%Y' underneath 'name: {self.dt_column_name}' in the datetime_column section of the yaml file if you haven't already. For reference, here is the first datetime given: {df[self.dt_column_name].values[0]}"
f"Database `connect_args` provided without sql query or table name. Please specify either `sql` or `table_name`."
110
+
"Database `connect_args` provided without sql query or table name. Please specify either `sql` or `table_name`."
109
111
)
110
112
else:
111
113
raiseInvalidParameterError(
112
-
f"No filename/url provided, and no connect_args provided. Please specify one of these if you want to read data from a file or a database respectively."
114
+
"No filename/url provided, and no connect_args provided. Please specify one of these if you want to read data from a file or a database respectively."
113
115
)
114
116
ifcolumns:
115
117
# keep only these columns, done after load because only CSV supports stream filtering
Copy file name to clipboardExpand all lines: ads/opctl/operator/lowcode/forecast/model/base_model.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -148,8 +148,9 @@ def generate_report(self):
148
148
header_section=rc.Block(
149
149
rc.Heading("Forecast Report", level=1),
150
150
rc.Text(
151
-
f"You selected the {self.spec.model} model.\n{model_description}\nBased on your dataset, you could have also selected any of the models: {SupportedModels.keys()}."
151
+
f"You selected the {self.spec.model} model.\nBased on your dataset, you could have also selected any of the models: {SupportedModels.keys()}."
0 commit comments