Downloads · 30 days
5
18% of all-time downloads
brenry/dazman79
dazman79 is a text-to-image model from brenry. 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
5
18% of all-time downloads
All-time downloads
28
Public
Repo size
39.8 MB
Likes
0
Public
Click a slice to open those files.
.safetensors39.8 MB · 100%
From the Hugging Face model README
You should use d4z to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to(device)
pipeline.load_lora_weights('brenry/dazman79', weight_name='d4z.safetensors')
image = pipeline('d4z').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers