Instructions to use zatochu/EasyFluff with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use zatochu/EasyFluff with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("zatochu/EasyFluff", dtype=torch.bfloat16, device_map="cuda") 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 scheduler/scheduler_config.json
Browse files
scheduler/scheduler_config.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
| 11 |
"lambda_min_clipped": -Infinity,
|
| 12 |
"lower_order_final": true,
|
| 13 |
"num_train_timesteps": 1000,
|
| 14 |
-
"prediction_type": "
|
| 15 |
"rescale_betas_zero_snr": false,
|
| 16 |
"sample_max_value": 1.0,
|
| 17 |
"set_alpha_to_one": false,
|
|
|
|
| 11 |
"lambda_min_clipped": -Infinity,
|
| 12 |
"lower_order_final": true,
|
| 13 |
"num_train_timesteps": 1000,
|
| 14 |
+
"prediction_type": "v_prediction",
|
| 15 |
"rescale_betas_zero_snr": false,
|
| 16 |
"sample_max_value": 1.0,
|
| 17 |
"set_alpha_to_one": false,
|