Skip to content

Commit

Permalink
update ml/model
Browse files Browse the repository at this point in the history
  • Loading branch information
XxRemsteelexX committed Aug 2, 2024
1 parent 5be3633 commit 4e3ac0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ml/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def train_model(X_train, y_train):
Trained machine learning model.
"""
# TODO: implement the function
hgc = RandomForestClassifier()
model = hgc.fit(X_train, y_train)
rfc = RandomForestClassifier()
model = rfc.fit(X_train, y_train)
return model


Expand Down

0 comments on commit 4e3ac0e

Please sign in to comment.