Advertisement
kopyl

Untitled

Jul 25th, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. root@4aed03acdabe:/stable-diffusion-webui# python webui.py \
  2. --port 3000 --api --listen --xformers --enable-insecure-extension-access --ui-debug-mode \
  3. --ckpt-dir /runpod-volume/sd-models --controlnet-dir /runpod-volume/cn-models \
  4. --controlnet-annotator-models-path /runpod-volume/cn-annotator
  5. 2023-07-25 19:47:39,691 - ControlNet - INFO - ControlNet v1.1.233
  6. ControlNet preprocessor location: /runpod-volume/cn-annotator
  7. 2023-07-25 19:47:39,949 - ControlNet - INFO - ControlNet v1.1.233
  8. preload_extensions_git_metadata for 8 extensions took 0.13s
  9. Running on local URL: http://0.0.0.0:3000
  10.  
  11. To create a public link, set `share=True` in `launch()`.
  12. Startup time: 6.1s (import torch: 1.2s, import gradio: 1.0s, import ldm: 1.0s, other imports: 0.7s, api.py: 0.4s, controlnet.py: 0.3s, lora_script.py: 0.1s, create ui: 0.5s, gradio launch: 0.8s).
  13. changing setting sd_model_checkpoint to /runpod-volume/stable-diffusion-webui/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors: FileNotFoundError
  14. Traceback (most recent call last):
  15. File "/stable-diffusion-webui/modules/shared.py", line 605, in set
  16. self.data_labels[key].onchange()
  17. File "/stable-diffusion-webui/modules/call_queue.py", line 13, in f
  18. res = func(*args, **kwargs)
  19. File "/stable-diffusion-webui/webui.py", line 226, in <lambda>
  20. shared.opts.onchange("sd_model_checkpoint", wrap_queued_call(lambda: modules.sd_models.reload_model_weights()), call=False)
  21. File "/stable-diffusion-webui/modules/sd_models.py", line 521, in reload_model_weights
  22. checkpoint_info = info or select_checkpoint()
  23. File "/stable-diffusion-webui/modules/sd_models.py", line 181, in select_checkpoint
  24. raise FileNotFoundError(error_message)
  25. FileNotFoundError: No checkpoints found. When searching for checkpoints, looked at:
  26. - file /stable-diffusion-webui/model.ckpt
  27. - directory /stable-diffusion-webui/models/Stable-diffusion
  28. - directory /runpod-volume/sd-modelsCan't run without a checkpoint. Find and place a .ckpt or .safetensors file into any of those locations.
  29.  
  30. Loading weights [6ce0161689] from /runpod-volume/sd-models/v1-5-pruned-emaonly.safetensors
  31. Creating model from config: /stable-diffusion-webui/configs/v1-inference.yaml
  32. LatentDiffusion: Running in eps-prediction mode
  33. DiffusionWrapper has 859.52 M params.
  34. Textual inversion embeddings loaded(0):
  35. Model loaded in 33.1s (create model: 0.4s, apply weights to model: 30.5s, apply half(): 0.3s, load VAE: 1.0s, move model to device: 0.3s, calculate empty prompt: 0.5s).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement