Downloads · 30 days
407
1% of all-time downloads
Purz/vhs-box
vhs-box is a text-to-image model from Purz. 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
407
1% of all-time downloads
All-time downloads
28.6K
Public
Repo size
39.8 MB
Likes
22
Trending 1
Click a slice to open those files.
.safetensors39.8 MB · 99%
From the Hugging Face model README
You should use vhs_box 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('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('Purz/vhs-box', weight_name='purz-vhs_box.safetensors')
image = pipeline('vhs_box a VHS cover of the movie Fuckin Fart Goblin').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers