Views
No views yet
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('linoyts/linoy_flux_v2', weight_name='pytorch_lora_weights.safetensors')
6
7image = pipeline('a TOK woman').images[0]# TODO: add an example code snippet for running this diffusion pipeline