--- tags: - text-to-image - flux - lora - diffusers - template:sd-lora - ai-toolkit widget: - text: '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' output: url: samples/1738532481211__000001000_0.jpg - text: 'Samurai Soldiers on Horseback: This illustration features samurai warriors riding horses, clad in traditional armor. The samurai appear to be engaged in some action, with one leader riding fast and others following behind. A butterfly flying near them creates an interesting contrast, adding a peaceful touch to the otherwise intense and combat-ready scene. in style of m1nimalizm_antic' output: url: samples/1738532496384__000001000_1.jpg - text: 'Viking Boat: The fourth image shows a Viking longboat in a calm sea. The boat''s crew, made up of several small characters, is rowing. The Viking leader, who looks exaggeratedly muscular, stands at the front of the boat. The sky is clear, and the overall tone of the image feels adventurous, as if it''s part of a sea expedition. in style of m1nimalizm_antic' output: url: samples/1738532511593__000001000_2.jpg base_model: black-forest-labs/FLUX.1-dev instance_prompt: in style of m1nimalizm_antic license: other license_name: flux-1-dev-non-commercial-license license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md --- # in-style-of-m1nimalizm-antic Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) ## Trigger words You should use `in style of m1nimalizm_antic` 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](/None/tree/main) them in the Files & versions tab. ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) ```py 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('None', weight_name='in-style-of-m1nimalizm-antic.safetensors') image = 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] image.save("my_image.png") ``` For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)