Instructions to use rootonchair/tscd_juggernaut_final with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use rootonchair/tscd_juggernaut_final with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("digiplay/Juggernaut_final", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("rootonchair/tscd_juggernaut_final") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,14 +13,13 @@ license: mit
|
|
| 13 |
|
| 14 |
<Gallery />
|
| 15 |
|
| 16 |
-
## Model description
|
| 17 |
|
| 18 |
## Model description
|
| 19 |
|
| 20 |
-
Fine-tune a distill LoRA version of [
|
| 21 |
-
Efficient Image Synthesis](https:
|
| 22 |
|
| 23 |
-
This LoRA is fine-tuned on [laion/conceptual-captions-12m-webdataset](https:
|
| 24 |
|
| 25 |
# Usage
|
| 26 |
```python
|
|
|
|
| 13 |
|
| 14 |
<Gallery />
|
| 15 |
|
|
|
|
| 16 |
|
| 17 |
## Model description
|
| 18 |
|
| 19 |
+
Fine-tune a distill LoRA version of [digiplay/Juggernaut_final](https://huggingface.co/digiplay/Juggernaut_final) using Trajectory Segmented Consistency Model (TSCD) introduce in [Hyper-SD: Trajectory Segmented Consistency Model for
|
| 20 |
+
Efficient Image Synthesis](https://arxiv.org/abs/2404.13686)
|
| 21 |
|
| 22 |
+
This LoRA is fine-tuned on [laion/conceptual-captions-12m-webdataset](https://huggingface.co/datasets/laion/conceptual-captions-12m-webdataset) for 16.000 iterations using unofficial training implementation at [https://github.com/rootonchair/consistency_models_distill](https://github.com/rootonchair/consistency_models_distill)
|
| 23 |
|
| 24 |
# Usage
|
| 25 |
```python
|