georgecazenavette commited on
Commit
6d6d2bd
1 Parent(s): c6317a9

fixed hf repo for sd 1.5

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -105,7 +105,7 @@ Take the 2-steps LoRA as an example, you can also use other LoRAs for the corres
105
  import torch
106
  from diffusers import DiffusionPipeline, DDIMScheduler
107
  from huggingface_hub import hf_hub_download
108
- base_model_id = "stabilityai/stable-diffusion-v1-5"
109
  repo_name = "ByteDance/Hyper-SD"
110
  # Take 2-steps lora as an example
111
  ckpt_name = "Hyper-SD15-2steps-lora.safetensors"
@@ -126,7 +126,7 @@ You can flexibly adjust the number of inference steps and eta value to achieve b
126
  import torch
127
  from diffusers import DiffusionPipeline, TCDScheduler
128
  from huggingface_hub import hf_hub_download
129
- base_model_id = "stabilityai/stable-diffusion-v1-5"
130
  repo_name = "ByteDance/Hyper-SD"
131
  ckpt_name = "Hyper-SD15-1step-lora.safetensors"
132
  # Load model.
 
105
  import torch
106
  from diffusers import DiffusionPipeline, DDIMScheduler
107
  from huggingface_hub import hf_hub_download
108
+ base_model_id = "runwayml/stable-diffusion-v1-5"
109
  repo_name = "ByteDance/Hyper-SD"
110
  # Take 2-steps lora as an example
111
  ckpt_name = "Hyper-SD15-2steps-lora.safetensors"
 
126
  import torch
127
  from diffusers import DiffusionPipeline, TCDScheduler
128
  from huggingface_hub import hf_hub_download
129
+ base_model_id = "runwayml/stable-diffusion-v1-5"
130
  repo_name = "ByteDance/Hyper-SD"
131
  ckpt_name = "Hyper-SD15-1step-lora.safetensors"
132
  # Load model.