Skip to content
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

[Bug]: runwayml removed SD1.5 repo #16459

Open
2 of 6 tasks
coconut009 opened this issue Sep 3, 2024 · 0 comments · May be fixed by #16460
Open
2 of 6 tasks

[Bug]: runwayml removed SD1.5 repo #16459

coconut009 opened this issue Sep 3, 2024 · 0 comments · May be fixed by #16460
Labels
bug-report Report of a bug, yet to be confirmed

Comments

@coconut009
Copy link

coconut009 commented Sep 3, 2024

Checklist

  • The issue exists after disabling all extensions
  • The issue exists on a clean installation of webui
  • The issue is caused by an extension, but I believe it is caused by a bug in the webui
  • The issue exists in the current version of the webui
  • The issue has not been reported before recently
  • The issue has been reported before but has not been fixed yet

What happened?

when no checkpoint/safetensor download, model will pull the default sd1.5 safetensor from runwayml HF repo. recently they removed it

Steps to reproduce the problem

run the webUI script as usual

What should have happened?

if no safetensor/checkpoint is download, it shall pull the sd1.5 safetensor from HF

What browsers do you use to access the UI ?

Google Chrome

Sysinfo

sysinfo-2024-09-03-19-04.json

Console logs

Python 3.10.12 (main, Jul 29 2024, 16:56:48) [GCC 11.4.0]
Version: v1.10.1
Commit hash: 82a973c04367123ae98bd9abdf80d9eda9b910e2
Installing requirements
Launching Web UI with arguments: --listen
no module 'xformers'. Processing without...
no module 'xformers'. Processing without...
No module 'xformers'. Proceeding without it.
Downloading: "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors" to /home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors

loading stable diffusion model: FileNotFoundError
Traceback (most recent call last):
  File "/usr/lib/python3.10/threading.py", line 973, in _bootstrap
    self._bootstrap_inner()
  File "/usr/lib/python3.10/threading.py", line 1016, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.10/threading.py", line 953, in run
    self._target(*self._args, **self._kwargs)
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/initialize.py", line 149, in load_model
    shared.sd_model  # noqa: B018
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/shared_items.py", line 175, in sd_model
    return modules.sd_models.model_data.get_sd_model()
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/sd_models.py", line 693, in get_sd_model
    load_model()
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/sd_models.py", line 788, in load_model
    checkpoint_info = checkpoint_info or select_checkpoint()
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/sd_models.py", line 234, in select_checkpoint
    raise FileNotFoundError(error_message)
FileNotFoundError: No checkpoints found. When searching for checkpoints, looked at:
 - file /home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/model.ckpt
 - directory /home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/models/Stable-diffusionCan't run without a checkpoint. Find and place a .ckpt or .safetensors file into any of those locations.


Stable diffusion model failed to load
Applying attention optimization: Doggettx... done.
Running on local URL:  http://0.0.0.0:7860

To create a public link, set `share=True` in `launch()`.
Startup time: 11.8s (prepare environment: 4.6s, import torch: 2.6s, import gradio: 0.6s, setup paths: 2.6s, other imports: 0.6s, list SD models: 0.1s, load scripts: 0.2s, create ui: 0.3s).
loading stable diffusion model: FileNotFoundError
Traceback (most recent call last):
  File "/usr/lib/python3.10/threading.py", line 973, in _bootstrap
    self._bootstrap_inner()
  File "/usr/lib/python3.10/threading.py", line 1016, in _bootstrap_inner
    self.run()
  File "/home/user1/Downloads/play_ground/test/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 807, in run
    result = context.run(func, *args)
  File "/home/user1/Downloads/play_ground/test/lib/python3.10/site-packages/gradio/utils.py", line 707, in wrapper
    response = f(*args, **kwargs)
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/ui.py", line 1165, in <lambda>
    update_image_cfg_scale_visibility = lambda: gr.update(visible=shared.sd_model and shared.sd_model.cond_stage_key == "edit")
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/shared_items.py", line 175, in sd_model
    return modules.sd_models.model_data.get_sd_model()
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/sd_models.py", line 693, in get_sd_model
    load_model()
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/sd_models.py", line 788, in load_model
    checkpoint_info = checkpoint_info or select_checkpoint()
  File "/home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/modules/sd_models.py", line 234, in select_checkpoint
    raise FileNotFoundError(error_message)
FileNotFoundError: No checkpoints found. When searching for checkpoints, looked at:
 - file /home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/model.ckpt
 - directory /home/user1/Downloads/play_ground/drawing/stable-diffusion-webui/models/Stable-diffusionCan't run without a checkpoint. Find and place a .ckpt or .safetensors file into any of those locations.


Stable diffusion model failed to load

Additional information

this repo has original sd1.5 archive saved
https://huggingface.co/botp/stable-diffusion-v1-5

@coconut009 coconut009 added the bug-report Report of a bug, yet to be confirmed label Sep 3, 2024
@missionfloyd missionfloyd linked a pull request Sep 4, 2024 that will close this issue
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug-report Report of a bug, yet to be confirmed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant