Views
No views yet
SSGMFV3F 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('jwywoo/storyboard-scene-generation-model-flux-v3-F', weight_name='storyboard_scene_generation_model_flux_v3_fifty.safetensors')
6image = pipeline('SSGMFV3F two asian males in their late 30s and one asian female in her late 20s having a conversation about economic issue in a newsroom, while laughing and arguing').images[0]
7image.save("my_image.png")