Guest User

Untitled

a guest
Dec 7th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.76 KB | None | 0 0
  1. venv "D:\Dev\stable-diffusion-webui\venv\Scripts\Python.exe"
  2. Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)]
  3. Commit hash: 98947d173e3f1667eba29c904f681047dea9de90
  4. Installing requirements for Web UI
  5. Launching Web UI with arguments:
  6. LatentDiffusion: Running in eps-prediction mode
  7. DiffusionWrapper has 859.52 M params.
  8. making attention of type 'vanilla' with 512 in_channels
  9. Working with z of shape (1, 4, 32, 32) = 4096 dimensions.
  10. making attention of type 'vanilla' with 512 in_channels
  11. Downloading: 100%|██████████████████████████████████████████████████████████████████| 939k/939k [00:00<00:00, 2.27MB/s]
  12. Downloading: 100%|██████████████████████████████████████████████████████████████████| 512k/512k [00:00<00:00, 1.44MB/s]
  13. Downloading: 100%|█████████████████████████████████████████████████████████████████████| 389/389 [00:00<00:00, 389kB/s]
  14. Downloading: 100%|█████████████████████████████████████████████████████████████████████| 905/905 [00:00<00:00, 907kB/s]
  15. Downloading: 100%|████████████████████████████████████████████████████████████████| 4.41k/4.41k [00:00<00:00, 4.53MB/s]
  16. Downloading: 100%|████████████████████████████████████████████████████████████████| 1.59G/1.59G [00:41<00:00, 41.3MB/s]
  17. Loading weights [7460a6fa] from D:\Dev\stable-diffusion-webui\models\Stable-diffusion\sd-v1-4.ckpt
  18. Global Step: 470000
  19. Applying cross attention optimization (Doggettx).
  20. Model loaded.
  21. Loaded a total of 0 textual inversion embeddings.
  22. Embeddings:
  23. Running on local URL: http://127.0.0.1:7860
  24.  
  25. To create a public link, set `share=True` in `launch()`.
  26. 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 20/20 [00:03<00:00, 5.78it/s]
  27. Total progress: 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████| 20/20 [00:01<00:00, 10.46it/s]
  28. Error running process: D:\Dev\stable-diffusion-webui\extensions\stable-diffusion-webui-aesthetic-gradients-master\scripts\aesthetic.py
  29. Traceback (most recent call last):
  30. File "D:\Dev\stable-diffusion-webui\modules\scripts.py", line 300, in process
  31. script.process(p, *script_args)
  32. File "D:\Dev\stable-diffusion-webui\extensions\stable-diffusion-webui-aesthetic-gradients-master\scripts\aesthetic.py", line 36, in process
  33. aesthetic.set_aesthetic_params(p, float(aesthetic_lr), float(aesthetic_weight), int(aesthetic_steps), aesthetic_imgs, aesthetic_slerp, aesthetic_imgs_text, aesthetic_slerp_angle, aesthetic_text_negative)
  34. File "D:\Dev\stable-diffusion-webui\extensions\stable-diffusion-webui-aesthetic-gradients-master\aesthetic_clip.py", line 174, in set_aesthetic_params
  35. self.load_image_embs(image_embs_name)
  36. File "D:\Dev\stable-diffusion-webui\extensions\stable-diffusion-webui-aesthetic-gradients-master\aesthetic_clip.py", line 197, in load_image_embs
  37. self.image_embs = torch.load(aesthetic_embeddings[self.image_embs_name], map_location=device)
  38. File "D:\Dev\stable-diffusion-webui\modules\safe.py", line 102, in load
  39. return load_with_extra(filename, *args, **kwargs)
  40. File "D:\Dev\stable-diffusion-webui\modules\safe.py", line 147, in load_with_extra
  41. return unsafe_torch_load(filename, *args, **kwargs)
  42. File "D:\Dev\stable-diffusion-webui\venv\lib\site-packages\torch\serialization.py", line 713, in load
  43. return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args)
  44. File "D:\Dev\stable-diffusion-webui\venv\lib\site-packages\torch\serialization.py", line 920, in _legacy_load
  45. magic_number = pickle_module.load(f, **pickle_load_args)
  46. _pickle.UnpicklingError: invalid load key, 'v'.
  47.  
  48. Aesthetic optimization: 0%| | 0/5 [00:00<?, ?it/s]
  49. Error completing request
  50. Arguments: ('a cat', '', 'None', 'None', 20, 0, False, False, 1, 1, 7, -1.0, -1.0, 0, 0, 0, False, 512, 512, False, 0.7, 0, 0, 0, 0.9, 5, '0.0001', False, 'pixelart', '', 0.1, False, False, False, False, '', 1, '', 0, '', True, False, False) {}
  51. Traceback (most recent call last):
  52. File "D:\Dev\stable-diffusion-webui\modules\ui.py", line 185, in f
  53. res = list(func(*args, **kwargs))
  54. File "D:\Dev\stable-diffusion-webui\webui.py", line 54, in f
  55. res = func(*args, **kwargs)
  56. File "D:\Dev\stable-diffusion-webui\modules\txt2img.py", line 48, in txt2img
  57. processed = process_images(p)
  58. File "D:\Dev\stable-diffusion-webui\modules\processing.py", line 423, in process_images
  59. res = process_images_inner(p)
  60. File "D:\Dev\stable-diffusion-webui\modules\processing.py", line 508, in process_images_inner
  61. uc = prompt_parser.get_learned_conditioning(shared.sd_model, len(prompts) * [p.negative_prompt], p.steps)
  62. File "D:\Dev\stable-diffusion-webui\modules\prompt_parser.py", line 138, in get_learned_conditioning
  63. conds = model.get_learned_conditioning(texts)
  64. File "D:\Dev\stable-diffusion-webui\repositories\stable-diffusion\ldm\models\diffusion\ddpm.py", line 558, in get_learned_conditioning
  65. c = self.cond_stage_model(c)
  66. File "D:\Dev\stable-diffusion-webui\venv\lib\site-packages\torch\nn\modules\module.py", line 1130, in _call_impl
  67. return forward_call(*input, **kwargs)
  68. File "D:\Dev\stable-diffusion-webui\modules\sd_hijack.py", line 340, in forward
  69. z1 = self.process_tokens(tokens, multipliers)
  70. File "D:\Dev\stable-diffusion-webui\extensions\stable-diffusion-webui-aesthetic-gradients-master\aesthetic_clip.py", line 233, in __call__
  71. sim = text_embs @ img_embs.T
  72. AttributeError: 'NoneType' object has no attribute 'T'
Advertisement
Add Comment
Please, Sign In to add comment