I just tried to run the solution on a new wsl2 "vm" with a fresh miniconda install using the provided environment.yaml and upon running python script/dream.py I get the usual load model but after that everything stop without any error...
(sdbm) bernard@DESKTOP-4M9DSE4:~/stable-diffusion-bm$ python scripts/dream.py --sampler klms
* Initializing, be patient...
Loading model from models/ldm/stable-diffusion-v1/model.ckpt
Global Step: 470000
LatentDiffusion: Running in eps-prediction mode
DiffusionWrapper has 859.52 M params.
making attention of type 'vanilla' with 512 in_channels
Working with z of shape (1, 4, 32, 32) = 4096 dimensions.
making attention of type 'vanilla' with 512 in_channels
Using half precision math. Call with --full_precision to use slower but more accurate full precision.
(sdbm) bernard@DESKTOP-4M9DSE4:~/stable-diffusion-bm$
Yes, I renamed the env from ldm to sdbm because I have too many repos I play with and they all use the same "ldm" name and this does not work well with conflicting requirements fort each... so I renamed the env in the environment.yaml file to make them per "repo".
If I then load my previous conda env with the original build from a fews days ago environment.yaml all is fine... Not sure what is missing but something is causing things to not work with the current yaml.
When it work under my previous ldm2 env I get e line about setting up the sampler that does not get shown with the latest commit:
(ldm2) bernard@DESKTOP-4M9DSE4:~/stable-diffusion-bm$ python scripts/dream.py --sampler klms
* Initializing, be patient...
Loading model from models/ldm/stable-diffusion-v1/model.ckpt
Global Step: 470000
LatentDiffusion: Running in eps-prediction mode
DiffusionWrapper has 859.52 M params.
making attention of type 'vanilla' with 512 in_channels
Working with z of shape (1, 4, 32, 32) = 4096 dimensions.
making attention of type 'vanilla' with 512 in_channels
Using half precision math. Call with --full_precision to use slower but more accurate full precision.
setting sampler to klms
* Initialization done! Awaiting your command (-h for help, 'q' to quit, 'cd' to change output dir, 'pwd' to print output dir)...
dream>
I just tried to run the solution on a new wsl2 "vm" with a fresh miniconda install using the provided environment.yaml and upon running
python script/dream.pyI get the usual load model but after that everything stop without any error...Yes, I renamed the env from ldm to sdbm because I have too many repos I play with and they all use the same "ldm" name and this does not work well with conflicting requirements fort each... so I renamed the env in the environment.yaml file to make them per "repo".
If I then load my previous conda env with the original build from a fews days ago environment.yaml all is fine... Not sure what is missing but something is causing things to not work with the current yaml.
When it work under my previous ldm2 env I get e line about setting up the sampler that does not get shown with the latest commit: