You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am facing a problem when trying to import modules that are inside the folders.
For instance in the notebook "03_01_autoencoder_train.ipynb" in the first cell when trying to import the module loaders.py inside the utils folder in order to load the mnist dataset, I get the error "ModuleNotFoundError: No module named 'utils.loaders'".
In the same sense, for instance in the notebook "03_05_vae_faces_train" again in the first cell, when it tries to run the line "from models.VAE import VariationalAutoEncoder" it tries to run the VAE.py inside the folder "models" it also fails in the line "from utils.callbacks import CustomCallback, step_decay_schedule" showing the following error: "ModuleNotFoundError: No module named 'utils.callbacks'".
It seems that it cannot recognize the utils folder in my directory.
I am running this from a jupyter notebook of an Anaconda environment created following step by step the instructions in the book.
Has anyone faced a similar issue?
Can anyone help me?
The text was updated successfully, but these errors were encountered:
I am facing a problem when trying to import modules that are inside the folders.
For instance in the notebook "03_01_autoencoder_train.ipynb" in the first cell when trying to import the module loaders.py inside the utils folder in order to load the mnist dataset, I get the error "ModuleNotFoundError: No module named 'utils.loaders'".
In the same sense, for instance in the notebook "03_05_vae_faces_train" again in the first cell, when it tries to run the line "from models.VAE import VariationalAutoEncoder" it tries to run the VAE.py inside the folder "models" it also fails in the line "from utils.callbacks import CustomCallback, step_decay_schedule" showing the following error: "ModuleNotFoundError: No module named 'utils.callbacks'".
It seems that it cannot recognize the utils folder in my directory.
I am running this from a jupyter notebook of an Anaconda environment created following step by step the instructions in the book.
Has anyone faced a similar issue?
Can anyone help me?
The text was updated successfully, but these errors were encountered: