Views
No views yet
in style of m1nimalizm_antic 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('None', weight_name='in-style-of-m1nimalizm-antic.safetensors')
6image = pipeline('Samurai Scene: This is an animated style scene where three samurai characters are depicted in a traditional Japanese setting. The scene shows a little samurai holding a sword in a defensive stance, possibly training or preparing for a challenge. The background is filled with a variety of swords lined up, hinting at a dojo-like atmosphere. in style of m1nimalizm_antic').images[0]
7image.save("my_image.png")