Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed Jun 30, 2021
1 parent 38992e4 commit 5b85587
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pydamage/accuracy_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ def fit_model(df, model):
df (pandas DataFrame): prepared pydamage results
model (pypmml model): GLM accuracy model
"""
print(df)
print(model.predict(df))
prediction = list(model.predict(df)["Predicted_sig"])
df["predicted_accuracy"] = prediction
return df["predicted_accuracy"].to_frame()

0 comments on commit 5b85587

Please sign in to comment.