We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfcc0c1 commit f8fe149Copy full SHA for f8fe149
dbos_fct/badi/functions.py
@@ -228,7 +228,7 @@ def process_and_predict(
228
raise HTTPException(status_code=500, detail="Model history not found")
229
history = history.filter(df.columns)
230
updated_df = pd.concat([history, df], ignore_index=True).drop_duplicates()
231
- model.fit(updated_df)
+ model = fit_model(updated_df)
232
except (AssertionError, HTTPException):
233
model = fit_model(df)
234
else:
0 commit comments