Instructions to use nerijs/pixel-art-xl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nerijs/pixel-art-xl with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("nerijs/pixel-art-xl") prompt = "pixel art, a cute corgi, simple, flat colors" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Examples
#10
by joe212 - opened
Hi, I'm using this awesome lora with ComfyUi (found it on yt I guess you know which video) and I'm literally loving it.
Wanted to ask, there's a way to feed it with examples I provide directly from the UI ? So that I can let it know that I want something similar to my starting image
I could deal also with pytorch code but I need some hint
Thanks
You can try img2img
Even some ControlNets works fine with the Lora :)