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.
1 parent 73ebf11 commit 5caf552Copy full SHA for 5caf552
ads/opctl/operator/lowcode/anomaly/model/automlx.py
@@ -42,11 +42,11 @@ def _build_model(self) -> pd.DataFrame:
42
anomaly = pd.DataFrame({
43
date_column: df[date_column],
44
OutputColumns.ANOMALY_COL: y_pred
45
- })
+ }).reset_index(drop=True)
46
score = pd.DataFrame({
47
48
OutputColumns.SCORE_COL: [item[1] for item in scores]
49
50
anomaly_output.add_output(target, anomaly, score)
51
52
return anomaly_output
0 commit comments