Instructions to use GraydientPlatformAPI/ponyforreal with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use GraydientPlatformAPI/ponyforreal with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("GraydientPlatformAPI/ponyforreal", 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
Thanking message
#1
by mugl12 - opened
man! You done great job. I am beginner for programming stuffs . I could only use old LoRA trainer in colab because other thing like kohya gui and dreambooth gives error after error in each step. EulerDiscreteScheduler models only goes without error in xl training in colab . But most of best models are EDMDPMSolverMultistepScheduler which gives error. Your respository lessen my work , as before I looked into shedular file in each model to know EulerDiscreteScheduler or not . Thank for your work.