Skip to content

Commit

Permalink
changed prepare_ml to default to False for scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
CamachoBry committed Feb 16, 2021
1 parent 861ed7c commit 6a61dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multi_participants/cong_incong/cong_incong.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
ml_df = mr.create_ml_df(avg_trials, labels)

# train models
X_train, X_test, y_train, y_test = mr.prepare_ml_df(ml_df)
X_train, X_test, y_train, y_test = mr.prepare_ml_df(ml_df, scale=False)

acc_svc, precision_svc = mr.train_svc(X_train, X_test, y_train, y_test)

Expand Down

0 comments on commit 6a61dc1

Please sign in to comment.