We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 389d050 + 38992ff commit 4284885Copy full SHA for 4284885
ads/opctl/operator/lowcode/forecast/__init__.py
@@ -3,3 +3,6 @@
3
4
# Copyright (c) 2023 Oracle and/or its affiliates.
5
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
6
+
7
+import numpy as np
8
+np.random.seed(42)
ads/opctl/operator/lowcode/forecast/model/automlx.py
@@ -158,7 +158,7 @@ def _build_model(self) -> pd.DataFrame:
158
summary_frame = model.forecast(
159
X=X_pred,
160
periods=horizon,
161
- alpha=1 - (self.spec.confidence_interval_width / 100),
+ alpha=1 - self.spec.confidence_interval_width,
162
)
163
164
fitted_values = model.predict(data_i.drop(target, axis=1))[
0 commit comments