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
Running the colab Notebook setup Simplified_Disco_Diffusion.ipynb yields the following error
ModuleNotFoundError Traceback (most recent call last) in () 107 # Import DD helper modules 108 sys.path.append(PROJECT_DIR) --> 109 import dd, dd_args 110 111 # Unsure about these:
/content/gdrive/MyDrive/disco-diffusion-1/dd.py in () 37 from deepdiff import DeepHash 38 import sqlite3 ---> 39 from torchmetrics import RetrievalFallOut 40 from tqdm.notebook import tqdm 41 from twilio.rest import Client
ModuleNotFoundError: No module named 'torchmetrics'
NOTE: If your import is failing due to a missing package, you can manually install dependencies using either !pip or !apt.
The text was updated successfully, but these errors were encountered:
!pip install torchmetrics
manually inserted in to the enviroment setup on the colab notebook
fixed the error for me
Sorry, something went wrong.
No branches or pull requests
Running the colab Notebook setup Simplified_Disco_Diffusion.ipynb yields the following error
ModuleNotFoundError Traceback (most recent call last)
in ()
107 # Import DD helper modules
108 sys.path.append(PROJECT_DIR)
--> 109 import dd, dd_args
110
111 # Unsure about these:
/content/gdrive/MyDrive/disco-diffusion-1/dd.py in ()
37 from deepdiff import DeepHash
38 import sqlite3
---> 39 from torchmetrics import RetrievalFallOut
40 from tqdm.notebook import tqdm
41 from twilio.rest import Client
ModuleNotFoundError: No module named 'torchmetrics'
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.
The text was updated successfully, but these errors were encountered: