Instructions to use Ocean3/Sprout with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Ocean3/Sprout with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Ocean3/Sprout", 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
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,6 @@ This is an experimental anime style model that replaces each block with a differ
|
|
| 15 |
The Clip is left intact and not replaced at the end or throughout any merge parts.
|
| 16 |
|
| 17 |
IN00 - Mugen a1
|
| 18 |
-
|
| 19 |
IN01 - Koji v2
|
| 20 |
IN02 - Samaritan 3d Cartoon v1
|
| 21 |
IN03 - SuperMix 1 RT2
|
|
|
|
| 15 |
The Clip is left intact and not replaced at the end or throughout any merge parts.
|
| 16 |
|
| 17 |
IN00 - Mugen a1
|
|
|
|
| 18 |
IN01 - Koji v2
|
| 19 |
IN02 - Samaritan 3d Cartoon v1
|
| 20 |
IN03 - SuperMix 1 RT2
|