Skip to content

Commit 0290e07

Browse files
committed
Merge branch 'main' of github.com:oracle/accelerated-data-science into list_md_model_group_handling
2 parents 61cdbfd + 308be3f commit 0290e07

File tree

1 file changed

+1
-1
lines changed
  • ads/opctl/operator/lowcode/forecast/model

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def _build_model(self) -> pd.DataFrame:
158158
summary_frame = model.forecast(
159159
X=X_pred,
160160
periods=horizon,
161-
alpha=1 - (self.spec.confidence_interval_width / 100),
161+
alpha=1 - self.spec.confidence_interval_width,
162162
)
163163

164164
fitted_values = model.predict(data_i.drop(target, axis=1))[

0 commit comments

Comments
 (0)