-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: 'NoneType' object has no attribute 'split' using anaconda #754
Comments
https://mlcourse.ai/book/topic03/assignment03_decision_trees_solution.html
did throw an error cuz i provided an Index instead of a list so i was able to fix using df_train.columns.tolist() |
is it should be like this? data_test[c].fillna(data_train[c].mode()[0], inplace=True)
|
https://mlcourse.ai/book/topic06/topic6_feature_engineering_feature_selection.html#statistical-approaches - Statistical approaches section, |
https://mlcourse.ai/book/topic08/assignment08_implement_sgd_regressor.html |
https://mlcourse.ai/book/topic09/assignment09_time_series.html downloads an html file every time i refresh the page o_o |
Better late than never.
Doesn't reproduce, I'm providing all dependencies with Poetry, those should work.
Don't see issues here.
Yes, filling in data in the test set with statistics calculated with the training set.
No, it actually throws away one feature
fixed in #768
no longer see the issue (another one with Prophet will be fixed later #767) |
needed to upgrade threadpoolctl to 3.2
pip install threadpoolctl --upgrade
to fix the error AttributeError: 'NoneType' object has no attribute 'split' in topic 3 on the line
knn_pred = knn.predict(X_holdout_scaled)
also it was in some previous topic but dont remember where
used anaconda so im suggesting to add a hint or smth to help other people if they face it
The text was updated successfully, but these errors were encountered: