I’m working with a Python script that uses the StableDiffusionPipeline
from the diffusers module. Here’s the relevant part of my code:
from diffusers import StableDiffusionPipeline
MODEL_PATH = '/home/mypath/Stable-diffusion/limitlessvision_v20.safetensors'
pipeline = StableDiffusionPipeline.from_single_file(MODEL_PATH)
The line pipeline = StableDiffusionPipeline.from_single_file(MODEL_PATH)
only works when I have an active internet connection. If I’m offline, I encounter the following error:
ConnectionError: HTTPSConnectionPool(host='raw.githubusercontent.com', port=443): Max retries exceeded with url: /CompVis/stable-diffusion/main/configs/stable-diffusion/v1-inference.yaml (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f27f1dc4b50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution'))
Given that my .safetensors
model file is already stored locally on my computer, I would like my code to function even when I’m offline.
How can I achieve this?
Any help would be appreciated. Thanks!
I ran into the same thing and stepped through the code a bit, which is actually less daunting that it seemed initially. Here is what I found:
Direct Answer to Question
You are missing the config file which is specified with the
original_config_file
parameter. That is why it is trying to download the file.Some of the basic stable diffusion ones can be found here: https://github.com/Stability-AI/stablediffusion/tree/main/configs/stable-diffusion
But also the error should tell you the full path it's going to, so you can just download exactly the needed file.
I also recommend setting
local_files_only=True
just for good measure.Additional Data
Once you have this running you mayfind you are missing two more items (this depends on your model, and the errors will give you details.)
You need to create a directory called
openai/clip-vit-large-patch14
relative to your execution directory and download into it the contents of this: https://huggingface.co/openai/clip-vit-large-patch14/tree/mainThen by default it tries to download the safety checker model. You can similarly download it into the
CompVis/stable-diffusion-checker-safety-checker
directory, relative to your execution directory. You can get the files from here: https://huggingface.co/CompVis/stable-diffusion-safety-checker/tree/mainOr you can just set
load_safety_checker=False
, although this is not recommended.Sample loading code