Skip to content

Commit 734af5b

Browse files
committed
rename mlforecast to lgbforecast
1 parent 9c836e4 commit 734af5b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ads/opctl/operator/lowcode/forecast/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class SupportedModels(str, metaclass=ExtendedEnumMeta):
1414
Prophet = "prophet"
1515
Arima = "arima"
1616
NeuralProphet = "neuralprophet"
17-
MLForecast = "mlforecast"
17+
LGBForecast = "lgbforecast"
1818
AutoMLX = "automlx"
1919
AutoTS = "autots"
2020
Auto = "auto"

ads/opctl/operator/lowcode/forecast/model/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ForecastOperatorModelFactory:
3333
SupportedModels.Prophet: ProphetOperatorModel,
3434
SupportedModels.Arima: ArimaOperatorModel,
3535
SupportedModels.NeuralProphet: NeuralProphetOperatorModel,
36-
SupportedModels.MLForecast: MLForecastOperatorModel,
36+
SupportedModels.LGBForecast: MLForecastOperatorModel,
3737
SupportedModels.AutoMLX: AutoMLXOperatorModel,
3838
SupportedModels.AutoTS: AutoTSOperatorModel
3939
}

ads/opctl/operator/lowcode/forecast/model/ml_forecast.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ def _generate_report(self):
211211
self.datasets.list_series_ids(),
212212
)
213213

214-
# Section 2: MlForecast Model Parameters
214+
# Section 2: LGBForecast Model Parameters
215215
sec2_text = rc.Block(
216-
rc.Heading("MlForecast Model Parameters", level=2),
217-
rc.Text("These are the parameters used for the MlForecast model."),
216+
rc.Heading("LGBForecast Model Parameters", level=2),
217+
rc.Text("These are the parameters used for the LGBForecast model."),
218218
)
219219

220220
blocks = [
@@ -228,7 +228,7 @@ def _generate_report(self):
228228

229229
all_sections = [sec1_text, sec_1, sec2_text, sec_2]
230230
model_description = rc.Text(
231-
"mlforecast is a framework to perform time series forecasting using machine learning models"
231+
"LGBForecast uses mlforecast framework to perform time series forecasting using machine learning models"
232232
"with the option to scale to massive amounts of data using remote clusters."
233233
"Fastest implementations of feature engineering for time series forecasting in Python."
234234
"Support for exogenous variables and static covariates."

ads/opctl/operator/lowcode/forecast/schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ spec:
379379
- prophet
380380
- arima
381381
- neuralprophet
382-
- mlforecast
382+
- lgbforecast
383383
- automlx
384384
- autots
385385
- auto-select

0 commit comments

Comments
 (0)