Update README.md
Browse files
README.md
CHANGED
@@ -11,7 +11,7 @@ pipeline_tag: text-to-image
|
|
11 |
|
12 |
## Model Summary
|
13 |
|
14 |
-
**
|
15 |
|
16 |
- **Type**: Text-to-Image Generation
|
17 |
- **Architecture**: Merged FLUX.1 Schnell with CFG capabilities
|
@@ -22,7 +22,7 @@ pipeline_tag: text-to-image
|
|
22 |
|
23 |
## Features
|
24 |
|
25 |
-
- **CFG Integration**:
|
26 |
- **High Fidelity**: Produces ultra-realistic and detailed images.
|
27 |
- **Customizable Output**: Supports a wide range of prompts, styles, and configurations.
|
28 |
|
@@ -60,7 +60,7 @@ pipeline_tag: text-to-image
|
|
60 |
from diffusers import DiffusionPipeline
|
61 |
|
62 |
# Load the model
|
63 |
-
pipe = DiffusionPipeline.from_pretrained("miike-ai/
|
64 |
pipe.to("cuda") # Ensure CUDA is available
|
65 |
|
66 |
# Generate an image
|
@@ -94,10 +94,10 @@ image.save("generated_image.png")
|
|
94 |
If you use **Skittles v2** in your work, please cite:
|
95 |
|
96 |
```bibtex
|
97 |
-
@misc{
|
98 |
-
title={
|
99 |
author={miike-ai},
|
100 |
year={2024},
|
101 |
-
url={https://huggingface.co/miike-ai/
|
102 |
}
|
103 |
```
|
|
|
11 |
|
12 |
## Model Summary
|
13 |
|
14 |
+
**Flux Schnell CFG** is a cutting-edge text-to-image generation model, created by merging components from the **FLUX.1 Schnell** architecture. By combining the precision of **FLUX.1 Schnell** with advanced tweaks, **Skittles v2** is designed to offer high-quality image outputs.
|
15 |
|
16 |
- **Type**: Text-to-Image Generation
|
17 |
- **Architecture**: Merged FLUX.1 Schnell with CFG capabilities
|
|
|
22 |
|
23 |
## Features
|
24 |
|
25 |
+
- **CFG Integration**: Flux Schnell CFG unlocks CFG (Classifier-Free Guidance) capabilities, offering fine-grained control over image generation.
|
26 |
- **High Fidelity**: Produces ultra-realistic and detailed images.
|
27 |
- **Customizable Output**: Supports a wide range of prompts, styles, and configurations.
|
28 |
|
|
|
60 |
from diffusers import DiffusionPipeline
|
61 |
|
62 |
# Load the model
|
63 |
+
pipe = DiffusionPipeline.from_pretrained("miike-ai/flux-schnell-cfg")
|
64 |
pipe.to("cuda") # Ensure CUDA is available
|
65 |
|
66 |
# Generate an image
|
|
|
94 |
If you use **Skittles v2** in your work, please cite:
|
95 |
|
96 |
```bibtex
|
97 |
+
@misc{miike2024flux-schnell-cfg,
|
98 |
+
title={Flux Schnell CFG: A Merged Text-to-Image Generation Model},
|
99 |
author={miike-ai},
|
100 |
year={2024},
|
101 |
+
url={https://huggingface.co/miike-ai/flux-schnell-cfg},
|
102 |
}
|
103 |
```
|