Downloads · 30 days
18
5% of all-time downloads
Tech-Meld/gpus-everywhere
gpus-everywhere is a text-to-image model from Tech-Meld. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as other.
Downloads · 30 days
18
5% of all-time downloads
All-time downloads
381
Public
Repo size
228 MB
Likes
1
Public
Click a slice to open those files.
.safetensors228 MB · 100%
From the Hugging Face model README
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Tech-Meld/gpus-everywhere', weight_name='GPUs_Everywhere.safetensors')
image = pipeline('Your custom prompt').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers