Views
No views yet
--sref 3102110963 and --personalize 3xdy3qw flags. You can find the entire training set here in this repo: ./2024-08-24-latentpop.zip{
"steps": 1300,
"lora_rank": 24,
"optimizer": "adamw8bit",
"batch_size": 4,
"resolution": "512,768,1024",
"autocaption": true,
"input_images": "https://replicate.delivery/pbxt/Lg3C1KUPfrRZZvJFaaSTmQ9qtAyXSonLvLSuTuj4Nop9vcSu/2024-08-24-latentpop.zip",
"trigger_word": "LNTP",
"learning_rate": 0.0002,
"autocaption_suffix": "LNTP style",
"caption_dropout_rate": 0.05,
}LNTP to trigger the image generation. The output images look more stylistically interesting with a guidance_scale of ~2.5.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('jakedahn/flux-latentpop', weight_name='lora.safetensors')
6image = pipeline('your prompt').images[0]