I think i don’t have editing privileges yet… This problem was caused by a dodgy cuda/cudnn install on windows. Solved by reinstalling cuda from within wsl inside the wsl/ubuntu file system.
Hi! I think I had a similar issue, and I think I found a resolution, so I wanted to share it. I am using the 07_convolutions.ipynb and I am running from a Colab environment.
When running
from miniai.training import *
I obtained the following error:
`---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
in <cell line: 0>()
6 from typing import Mapping
7
----> 8 from miniai.training import *
9 from miniai.datasets import *
ModuleNotFoundError: No module named ‘miniai.training’
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
“Open Examples” button below.
---------------------------------------------------------------------------`
It seems to be necessary to first mount the Google Drive access:
from google.colab import drive drive.mount('/content/drive')
Then, run !pip install -e from the directory that contains the setup.py file. In my case, I ran
!pip install -e '/content/drive/MyDrive/course22p2-master'
Doing this seems to have resolved the issue.