Files changed (2) hide show
  1. README.md +7 -24
  2. SSD-1B-A1111.safetensors +0 -3
README.md CHANGED
@@ -16,15 +16,11 @@ library_name: diffusers
16
 
17
  # Segmind Stable Diffusion 1B (SSD-1B) Model Card
18
 
19
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/62039c2d91d53938a643317d/WveKcu7q5PyZEwNezyyMC.png)
20
-
21
- ## 📣 Read our [technical report](https://huggingface.co/papers/2401.02677) for more details on our disillation method
22
-
23
- ## AUTOMATIC1111 compatibility added. Supporting file [here](https://huggingface.co/segmind/SSD-1B/blob/main/SSD-1B-A1111.safetensors)
24
 
25
  ## Demo
26
 
27
- Try out the model at [Segmind SSD-1B](https://www.segmind.com/models/ssd-1b?utm_source=hf) for ⚡ fastest inference. You can also try it on [🤗 Spaces](https://huggingface.co/spaces/segmind/Segmind-Stable-Diffusion)
28
 
29
  ## Model Description
30
 
@@ -154,7 +150,7 @@ The Segmind Stable Diffusion Model is suitable for research and practical applic
154
 
155
  The Segmind Stable Diffusion Model can also be used directly with the 🧨 Diffusers library training scripts for further training, including:
156
 
157
- - **[LoRA](https://github.com/huggingface/diffusers/blob/main/examples/text_to_image/train_text_to_image_lora_sdxl.py):**
158
  ```bash
159
  export MODEL_NAME="segmind/SSD-1B"
160
  export VAE_NAME="madebyollin/sdxl-vae-fp16-fix"
@@ -170,12 +166,11 @@ accelerate launch train_text_to_image_lora_sdxl.py \
170
  --learning_rate=1e-04 --lr_scheduler="constant" --lr_warmup_steps=0 \
171
  --mixed_precision="fp16" \
172
  --seed=42 \
173
- --output_dir="sd-pokemon-model-lora-ssd" \
174
  --validation_prompt="cute dragon creature" --report_to="wandb" \
175
  --push_to_hub
176
  ```
177
-
178
- - **[Fine-Tune](https://github.com/huggingface/diffusers/blob/main/examples/text_to_image/train_text_to_image_sdxl.py):**
179
  ```bash
180
  export MODEL_NAME="segmind/SSD-1B"
181
  export VAE_NAME="madebyollin/sdxl-vae-fp16-fix"
@@ -197,7 +192,7 @@ accelerate launch train_text_to_image_sdxl.py \
197
  --report_to="wandb" \
198
  --validation_prompt="a cute Sundar Pichai creature" --validation_epochs 5 \
199
  --checkpointing_steps=5000 \
200
- --output_dir="ssd-pokemon-model" \
201
  --push_to_hub
202
  ```
203
  - **[Dreambooth LoRA](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/train_dreambooth_lora_sdxl.py):**
@@ -235,16 +230,4 @@ The SSD-1B Model is not suitable for creating factual or accurate representation
235
  ## Limitations and Bias
236
 
237
  Limitations & Bias
238
- The SSD-1B Model has some challenges in embodying absolute photorealism, especially in human depictions. While it grapples with incorporating clear text and maintaining the fidelity of complex compositions due to its autoencoding approach, these hurdles pave the way for future enhancements. Importantly, the model's exposure to a diverse dataset, though not a panacea for ingrained societal and digital biases, represents a foundational step towards more equitable technology. Users are encouraged to interact with this pioneering tool with an understanding of its current limitations, fostering an environment of conscious engagement and anticipation for its continued evolution.
239
-
240
- ## Citation
241
- ```
242
- @misc{gupta2024progressive,
243
- title={Progressive Knowledge Distillation Of Stable Diffusion XL Using Layer Level Loss},
244
- author={Yatharth Gupta and Vishnu V. Jaddipal and Harish Prabhala and Sayak Paul and Patrick Von Platen},
245
- year={2024},
246
- eprint={2401.02677},
247
- archivePrefix={arXiv},
248
- primaryClass={cs.CV}
249
- }
250
- ```
 
16
 
17
  # Segmind Stable Diffusion 1B (SSD-1B) Model Card
18
 
19
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/62039c2d91d53938a643317d/0Iu_0f0d1ihGy0YiOd9uS.png)
 
 
 
 
20
 
21
  ## Demo
22
 
23
+ Try out the model at [Segmind SSD-1B](https://www.segmind.com/models/ssd-1b) for ⚡ fastest inference. You can also try it on [🤗 Spaces](https://huggingface.co/spaces/segmind/Segmind-Stable-Diffusion)
24
 
25
  ## Model Description
26
 
 
150
 
151
  The Segmind Stable Diffusion Model can also be used directly with the 🧨 Diffusers library training scripts for further training, including:
152
 
153
+ - **[Fine-Tune](https://github.com/huggingface/diffusers/blob/main/examples/text_to_image/train_text_to_image_sdxl.py):**
154
  ```bash
155
  export MODEL_NAME="segmind/SSD-1B"
156
  export VAE_NAME="madebyollin/sdxl-vae-fp16-fix"
 
166
  --learning_rate=1e-04 --lr_scheduler="constant" --lr_warmup_steps=0 \
167
  --mixed_precision="fp16" \
168
  --seed=42 \
169
+ --output_dir="sd-pokemon-model-lora-sdxl" \
170
  --validation_prompt="cute dragon creature" --report_to="wandb" \
171
  --push_to_hub
172
  ```
173
+ - **[LoRA](https://github.com/huggingface/diffusers/blob/main/examples/text_to_image/train_text_to_image_lora_sdxl.py):**
 
174
  ```bash
175
  export MODEL_NAME="segmind/SSD-1B"
176
  export VAE_NAME="madebyollin/sdxl-vae-fp16-fix"
 
192
  --report_to="wandb" \
193
  --validation_prompt="a cute Sundar Pichai creature" --validation_epochs 5 \
194
  --checkpointing_steps=5000 \
195
+ --output_dir="sdxl-pokemon-model" \
196
  --push_to_hub
197
  ```
198
  - **[Dreambooth LoRA](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/train_dreambooth_lora_sdxl.py):**
 
230
  ## Limitations and Bias
231
 
232
  Limitations & Bias
233
+ The SSD-1B Model has some challenges in embodying absolute photorealism, especially in human depictions. While it grapples with incorporating clear text and maintaining the fidelity of complex compositions due to its autoencoding approach, these hurdles pave the way for future enhancements. Importantly, the model's exposure to a diverse dataset, though not a panacea for ingrained societal and digital biases, represents a foundational step towards more equitable technology. Users are encouraged to interact with this pioneering tool with an understanding of its current limitations, fostering an environment of conscious engagement and anticipation for its continued evolution.
 
 
 
 
 
 
 
 
 
 
 
 
SSD-1B-A1111.safetensors DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1895a00bfc769a00b0c0c43a95e433e79e9db8a85402b45a33e8448785bde94d
3
- size 4465671322