Views
No views yet
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/weirdcore-aesthetic-flux-dev', weight_name='weirdcore-aesthetic-flux-dev.safetensors')
8image = pipeline('Weirdcore aesthetic. Low quality photo of an empty room with a giant hole in the floor. The hole leads to a beautiful field with edited butterflies and rainbows coming out. The blue text says "don\'t you wanna see what\'s on the other side?". ').images[0]