Views
No views yet
Deep fried meme. to trigger the generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
7pipe.load_lora_weights('analogspiderweb/deep-fried-memes-flux-dev', weight_name='deep-fried-memes.safetensors')
8image = pipeline('Deep fried meme. A 3d render of Shrek angrily holding a gun to the viewer. He has red glowing eyes. Top text "THIS IS A ROBBERY", bottom text "GIVE ME THE BUZZ". Low quality, jpeg compression, saturated colors, distortion. ').images[0]