PeterL1n commited on
Commit
aa15e49
1 Parent(s): 32f7440

Update readme

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -10,7 +10,7 @@ library_name: diffusers
10
 
11
  ![Intro Image](images/intro.jpg)
12
 
13
- SDXL-Lightning is a lightning fast text-to-image generative model. It can generate high-quality 1024px images under a few steps. For more information, please refer to our paper: [SDXL-Lightning: Progressive Adversarial Diffusion Distillation]() (coming soon). The models are released for research purposes only.
14
 
15
  Our models are distilled from [stabilityai/stable-diffusion-xl-base-1.0](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0). This repository contains checkpoints for 1-step, 2-step, 4-step, and 8-step distilled models.
16
 
@@ -29,7 +29,7 @@ from diffusers import StableDiffusionXLPipeline, EulerDiscreteScheduler
29
  from huggingface_hub import hf_hub_download
30
 
31
  base = "stabilityai/stable-diffusion-xl-base-1.0"
32
- repo = "ByteDance/sdxl-lightning"
33
  ckpt = "sdxl_lightning_4step_unet.pth" # Use the correct ckpt for your step setting!
34
 
35
  # Load model.
@@ -51,7 +51,7 @@ from diffusers import StableDiffusionXLPipeline, EulerDiscreteScheduler
51
  from huggingface_hub import hf_hub_download
52
 
53
  base = "stabilityai/stable-diffusion-xl-base-1.0"
54
- repo = "ByteDance/sdxl-lightning"
55
  ckpt = "sdxl_lightning_4step_lora.pth" # Use the correct ckpt for your step setting!
56
 
57
  # Load model.
@@ -74,7 +74,7 @@ from diffusers import StableDiffusionXLPipeline, EulerDiscreteScheduler
74
  from huggingface_hub import hf_hub_download
75
 
76
  base = "stabilityai/stable-diffusion-xl-base-1.0"
77
- repo = "ByteDance/sdxl-lightning"
78
  ckpt = "sdxl_lightning_1step_unet.pth" # Use the correct ckpt for your step setting!
79
 
80
  # Load model.
 
10
 
11
  ![Intro Image](images/intro.jpg)
12
 
13
+ SDXL-Lightning is a lightning fast text-to-image generative model. It can generate high-quality 1024px images under a few steps. For more information, please refer to our paper: [SDXL-Lightning: Progressive Adversarial Diffusion Distillation](https://huggingface.co/ByteDance/SDXL-Lightning/resolve/main/sdxl_lightning_report.pdf). The models are released for research purposes only.
14
 
15
  Our models are distilled from [stabilityai/stable-diffusion-xl-base-1.0](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0). This repository contains checkpoints for 1-step, 2-step, 4-step, and 8-step distilled models.
16
 
 
29
  from huggingface_hub import hf_hub_download
30
 
31
  base = "stabilityai/stable-diffusion-xl-base-1.0"
32
+ repo = "ByteDance/SDXL-Lightning"
33
  ckpt = "sdxl_lightning_4step_unet.pth" # Use the correct ckpt for your step setting!
34
 
35
  # Load model.
 
51
  from huggingface_hub import hf_hub_download
52
 
53
  base = "stabilityai/stable-diffusion-xl-base-1.0"
54
+ repo = "ByteDance/SDXL-Lightning"
55
  ckpt = "sdxl_lightning_4step_lora.pth" # Use the correct ckpt for your step setting!
56
 
57
  # Load model.
 
74
  from huggingface_hub import hf_hub_download
75
 
76
  base = "stabilityai/stable-diffusion-xl-base-1.0"
77
+ repo = "ByteDance/SDXL-Lightning"
78
  ckpt = "sdxl_lightning_1step_unet.pth" # Use the correct ckpt for your step setting!
79
 
80
  # Load model.