renyuxi commited on
Commit
e8e7a23
1 Parent(s): c6317a9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -9,7 +9,7 @@ tags:
9
  ---
10
 
11
  # Hyper-SD
12
- Official Repository of the paper: *[Hyper-SD]()*. (already submitted, coming very soon!)
13
 
14
  Project Page: https://hyper-sd.github.io/
15
 
@@ -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.
@@ -311,5 +311,12 @@ image.save('image_out.png')
311
 
312
  ## Citation
313
  ```bibtex
314
-
 
 
 
 
 
 
 
315
  ```
 
9
  ---
10
 
11
  # Hyper-SD
12
+ Official Repository of the paper: *[Hyper-SD](https://arxiv.org/abs/2404.13686)*.
13
 
14
  Project Page: https://hyper-sd.github.io/
15
 
 
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.
 
311
 
312
  ## Citation
313
  ```bibtex
314
+ @misc{ren2024hypersd,
315
+ title={Hyper-SD: Trajectory Segmented Consistency Model for Efficient Image Synthesis},
316
+ author={Yuxi Ren and Xin Xia and Yanzuo Lu and Jiacheng Zhang and Jie Wu and Pan Xie and Xing Wang and Xuefeng Xiao},
317
+ year={2024},
318
+ eprint={2404.13686},
319
+ archivePrefix={arXiv},
320
+ primaryClass={cs.CV}
321
+ }
322
  ```