Reply To: SUBMOTIVE AI – Guide + files
Alright, yeah you can download it at W&B but if you just wanna use a trained model, without doing the whole chunk and finetune part the last step should be necessary. For example you wanna give the trained model to a friend. In the Dance Diffusion Generator there coming up new errors I cant fix right know. Im connected, I have enough ressources but to point I can not execute without running into error:
Imports:
————————————————————————-
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-f50d6bef0516> in <cell line: 12>()
10 import gc
11
—> 12 from diffusion import sampling
13 import torch
14 from torch import optim, nn
ModuleNotFoundError: No module named ‘diffusion’
—————————————————————————
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.
—————————————————————————
And the actual Sample Generator:
—————————————————————————
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-4-0d14f6aab1b4> in <cell line: 3>()
1 from urllib.parse import urlparse
2 import hashlib
—-> 3 import k_diffusion as K
4
5 #@title Create the model
ModuleNotFoundError: No module named ‘k_diffusion’
—————————————————————————
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.
—————————————————————————