-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
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
!python /content/DragGAN/visualizer_drag_gradio.py Problem #409
Comments
same issue😒😒 |
me too |
I solved this problem!
|
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118 |
thanks, this is properly working. |
docker run -p 7860:7860 -v "$PWD":/workspace/src -it draggan:latest bash Any ideas? Thanks |
Hi, if someone still has the problem, you can fix it by following: Add/replace the following with code at line 70 in visualizer_drag_gradio if isinstance(global_state, gr.State): state = dnnlib.EasyDict(global_state.value) else: state = dnnlib.EasyDict(global_state) for key, item in state.items(): if isinstance(item, dict): state[key] = dnnlib.EasyDict(item) Add the following code before returning in function init_images (visualizer_drag_gradio): global_state.value = state return global_state |
/unsubscribe |
I don't know why but I solved this issue by pip install gradio==3.36.1 this was also useful for pydantic error |
thanks,i solved this error and running now |
Hi. I have a problem to start the interface of DragGan AI after running command "!python /content/DragGAN/visualizer_drag_gradio.py" :
File under cache_dir (./checkpoints):
['stylegan2-cat-config-f.pkl', 'stylegan2_lions_512_pytorch.pkl', 'stylegan2-afhqcat-512x512.pkl', 'stylegan2-car-config-f.pkl', 'stylegan2_dogs_1024_pytorch.pkl', 'stylegan2-ffhq-512x512.pkl', 'stylegan2_elephants_512_pytorch.pkl', 'stylegan2_horses_256_pytorch.pkl']
Valid checkpoint file:
{'stylegan2-cat-config-f': './checkpoints/stylegan2-cat-config-f.pkl', 'stylegan2_lions_512_pytorch': './checkpoints/stylegan2_lions_512_pytorch.pkl', 'stylegan2-afhqcat-512x512': './checkpoints/stylegan2-afhqcat-512x512.pkl', 'stylegan2-car-config-f': './checkpoints/stylegan2-car-config-f.pkl', 'stylegan2_dogs_1024_pytorch': './checkpoints/stylegan2_dogs_1024_pytorch.pkl', 'stylegan2-ffhq-512x512': './checkpoints/stylegan2-ffhq-512x512.pkl', 'stylegan2_elephants_512_pytorch': './checkpoints/stylegan2_elephants_512_pytorch.pkl', 'stylegan2_horses_256_pytorch': './checkpoints/stylegan2_horses_256_pytorch.pkl'}
Loading "./checkpoints/stylegan2_lions_512_pytorch.pkl"... Done.
()
{'z_dim': 512, 'c_dim': 0, 'w_dim': 512, 'img_resolution': 512, 'img_channels': 3, 'mapping_kwargs': {'num_layers': 8, 'embed_features': None, 'layer_features': None, 'activation': 'lrelu', 'lr_multiplier': 0.01, 'w_avg_beta': 0.995}, 'synthesis_kwargs': {'channel_base': 32768, 'channel_max': 512, 'num_fp16_res': 0, 'conv_clamp': None, 'architecture': 'skip', 'resample_filter': [1, 3, 3, 1], 'use_noise': True, 'activation': 'lrelu'}}
Traceback (most recent call last):
File "/content/DragGAN/visualizer_drag_gradio.py", line 205, in
global_state = init_images(global_state)
File "/content/DragGAN/visualizer_drag_gradio.py", line 75, in init_images
state['renderer'].init_network(
File "/content/DragGAN/viz/renderer.py", line 224, in init_network
res.img_resolution = G.img_resolution
AttributeError: 'dict' object has no attribute 'img_resolution'
Also I was running the "!python scripts/download_model.py" command instead of "!sh scripts/download_model.sh".
Can someone help me? Im absolutely newbie in programming, just want to test this AI
Thanks
The text was updated successfully, but these errors were encountered: