Skip to content

Commit

Permalink
fix weird train test split
Browse files Browse the repository at this point in the history
  • Loading branch information
AHFXAdam committed Feb 21, 2024
1 parent 4f9ad56 commit 534a234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/hint_nn.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@
},
"outputs": [],
"source": [
"X_test, X_train, y_test, y_train = train_test_split(X, y, test_size=0.7, random_state=42)"
"X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)"
]
},
{
Expand Down

0 comments on commit 534a234

Please sign in to comment.