We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For an unknown reason - I'm getting this error even though I've defined a return values in the file https://github.com/DAGWorks-Inc/tuning-playground/blob/main/ml_project/phase4/split.py
The text was updated successfully, but these errors were encountered:
That's odd -- otherwise you don't need the typing import. You can just do dict as the type annotation.
dict
Sorry, something went wrong.
Also to rule out the sklearn function somehow interfering:
from sklearn import model_selection
then in your function do
model_selection.train_test_split(...)
No branches or pull requests
For an unknown reason - I'm getting this error even though I've defined a return values in the file
https://github.com/DAGWorks-Inc/tuning-playground/blob/main/ml_project/phase4/split.py
The text was updated successfully, but these errors were encountered: