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
Smooth Diffusion is a Great job! I try to run with command line to reproduce the results. To acheive this, I mainly removed the part of gradio and set argparse in original app.py, with detail in file app.txt
Bug output
When I run with python app.py --mode interpolation --img0 './assets/images/interpolation/cityview1.png' --img1 './assets/images/interpolation/cityview2.png' --txt0 'A city view' --txt1 'Another city view' on Ubuntu22.04 and find something wrong as follows:
By detaching latents_prev_rec0, it seems that the optimization loses connection to uncond_embeddings. This would make the optimization ineffective, wouldn’t it? In addition, the loss also does not change much.
I believe the issue lies with the package versions. Here are the versions I am installing now:
My Modification for Command Line Usage:
Smooth Diffusion is a Great job! I try to run with command line to reproduce the results. To acheive this, I mainly removed the part of
gradio
and setargparse
in originalapp.py
, with detail in file app.txtBug output
When I run with
python app.py --mode interpolation --img0 './assets/images/interpolation/cityview1.png' --img1 './assets/images/interpolation/cityview2.png' --txt0 'A city view' --txt1 'Another city view'
on Ubuntu22.04 and find something wrong as follows:My Solution
In
nulltxtinv_wrapper.py
, I added:in function
null_optimization
, I added:in function
null_optimization_dual
, which are detailed in file nulltxtinv_wrapper.txtThese modifications makes running with cmd successful.
The text was updated successfully, but these errors were encountered: