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
Hey!
I'm using Pytti tools and this Error occurred at the last step from: Run it!
-> ModuleNotFoundError
This is the code:
#@markdown Execute this cell to start image generation
from pytti.workhorse import _main as render_frames
import random
if (seed is None) or (params.seed is None):
params.seed = random.randint(-0x8000_0000_0000_0000, 0xffff_ffff_ffff_ffff)
render_frames(params)
This is the error:
ModuleNotFoundError Traceback (most recent call last) in <cell line: 2>()
1 #@markdown Execute this cell to start image generation
----> 2 from pytti.workhorse import _main as render_frames
3 import random
4
5 if (seed is None) or (params.seed is None):
Hey!
I'm using Pytti tools and this Error occurred at the last step from: Run it!
-> ModuleNotFoundError
This is the code:
#@markdown Execute this cell to start image generation
from pytti.workhorse import _main as render_frames
import random
if (seed is None) or (params.seed is None):
params.seed = random.randint(-0x8000_0000_0000_0000, 0xffff_ffff_ffff_ffff)
render_frames(params)
This is the error:
ModuleNotFoundError Traceback (most recent call last)
in <cell line: 2>()
1 #@markdown Execute this cell to start image generation
----> 2 from pytti.workhorse import _main as render_frames
3 import random
4
5 if (seed is None) or (params.seed is None):
2 frames
/usr/local/lib/python3.10/dist-packages/pytti/image_models/vqgan.py in
7
8
----> 9 from taming.models import cond_transformer, vqgan
10
11 from pytti import replace_grad, clamp_with_grad, vram_usage_mode
ModuleNotFoundError: No module named 'taming.models'
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.
Before everything was working great and I don't know what I should have changed ... would love to get help! :) I don't get any outputs anymore
The text was updated successfully, but these errors were encountered: