Views
No views yet
蘑菇TUTU to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.2", torch_dtype=torch.bfloat16).to('cuda')
4pipeline.load_lora_weights('Pain-Killer/1e-5-3k-64-128-ml-ws-dif', weight_name='pytorch_lora_weights.safetensors')
5image = pipeline('蘑菇TUTU坐在船上,双手拿着桨划船。背景在公园里,很多树。').images[0]# TODO: add an example code snippet for running this diffusion pipeline