Tech-Meld/pixel-perfect-pony-sdxl
334
Pixel Perfect [ Pony & SDXL ]
<Gallery />
Model description
<p>The Best SDXL/Pony LoRA for Pixel style Images.</p><p></p><p>Note : Use PXLART as a trigger word at the end of your prompt.</p>
Trigger words
You should use PXLART to trigger the image generation.
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to(device)
pipeline.load_lora_weights('Tech-Meld/pixel-perfect-pony-sdxl', weight_name='Pixel_Perfect___Pony__SDXL_-000016.safetensors')
image = pipeline('Pixel Art 8-bit style of A medium-close-up view of a car driving on a wet road at night. The car is in the center of the image, with its rear end facing the viewer. It is a dark brown Nissan GT-R, with a black and white logo on the side of the car. It has red and yellow lights on it, and it has a black spoiler on the back of it. The road is wet and there are white lines on both sides of the road. On the right side of this image, there are trees and bushes, and on the left side, there is a road divider with a yellow arrow sign on it. In the background there are many street lights and a hill with trees on the top. The sky is blue and cloudy, and the sun is shining through the clouds. PXLART').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
