Instructions to use ogkalu/Comic-Diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ogkalu/Comic-Diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ogkalu/Comic-Diffusion", 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
How did you train the V2-Model?
#4
by AxonAxis - opened
The V2 Model is super cool,really enjoy it .Would you tell me in detail how to train 6 different styles in just one model at once?Please!Thank you so much.
@AxonAxis
I have the process explained here
https://www.reddit.com/r/StableDiffusion/comments/yp02h9/comment/ivhiuoj/?utm_source=share&utm_medium=web2x&context=3
I have read your article about multiple class training several times, thank you very much that was so helpful!