Views
No views yet
manoSouthf to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('Himanshu806/manosouthf', weight_name='manosouthf.safetensors')
6image = pipeline('a woman in a green sari standing in front of a building, holding a bag in her hand. The building has a door with a name board on it, and there are plants and flowers in the background manoSouthf').images[0]
7image.save("my_image.png")