jwywoo/storyboard-scene-generation-model-flux-v3-FLH
16163
storyboardscenegenerationmodelfluxv3FLH
Model trained with AI Toolkit by Ostris <Gallery />
Trigger words
You should use SSGM([trigger]) black and white color illustration or SSGM([trigger]) black and white color 4 scenes of illustrations to trigger the image generation.
Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('jwywoo/storyboard-scene-generation-model-flux-v3-FLH', weight_name='storyboard_scene_generation_model_flux_v3_FLH.safetensors')
image = pipeline('[trigger] black and white color illustration, 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]
image.save("my_image.png")For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
