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
First off, I had to create an empty __init__.py in the root folder of the project so that the from .image import ... in utils/data.py would work.
__init__.py
from .image import ...
utils/data.py
Secondly, in Visualization & Train Test Split.ipynb I had to change .as_matrix() to .to_numpy().
Visualization & Train Test Split.ipynb
.as_matrix()
.to_numpy()
After those 2 changes things are going smoothly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First off, I had to create an empty
__init__.py
in the root folder of the project so that thefrom .image import ...
inutils/data.py
would work.Secondly, in
Visualization & Train Test Split.ipynb
I had to change.as_matrix()
to.to_numpy()
.After those 2 changes things are going smoothly.
The text was updated successfully, but these errors were encountered: