--- language: en license: mit tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora --- # New Lora for Flux Dev Model: Impasto Style Unleashed! Hey fellow artists and AI enthusiasts! I'm thrilled to share a project that's been close to my heart for over a year now. As someone who's always been fascinated by the impasto style and its ability to add a touch of magic to any image, I set out on a journey to create a Lora that could capture this essence. ## The Journey It wasn't an easy road. I went through more than 10 iterations, each time refining and tweaking to get closer to my vision. But persistence pays off! After carefully curating over 300 images throughout this month (finding the right images was a challenge in itself), I finally succeeded in creating a Lora with 23 epochs that satisfies my artistic vision. ## The Result This Lora, designed for the Flux Dev model, brings the rich, textured world of impasto to your AI-generated images. Expect to see: * Bold, visible brush strokes * Thick application of paint * Rich textures that seem to leap off the canvas * A tangible sense of depth and dimensionality ## Try It Out! I'm excited to share this Lora with the community and see what you create with it. Whether you're into landscapes, portraits, or abstract art, this impasto Lora can add a new dimension to your work. ## Inference ```python import torch from diffusers import FluxPipeline pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16) pipe.load_lora_weights("ABDALLALSWAITI/impasto-style-lora", weight_name="impasto_style_lora.safetensors") pipe.fuse_lora(lora_scale=1.5) pipe.to("cuda") prompt = "A beautiful woman, flim rendering , in impastox style" image = pipe(prompt, num_inference_steps=24, guidance_scale=3.5, width=768, height=1024, ).images[0] image.save(f"example.png") ``` ## Final Thoughts Creating this Lora was a labor of love, and I hope it brings as much joy to your creations as it has to mine. Happy generating, and don't forget to share your results! ## Sample Images Here are some sample images showcasing the capabilities of this Impasto Style Lora: ![Sample Image 1](samples/sample_image_1.png) ![Sample Image 2](samples/sample_image_2.png) ![Sample Image 3](samples/sample_image_3.png) ![Sample Image 4](samples/sample_image_4.png) ![Sample Image 5](samples/sample_image_5.png) ![Sample Image 6](samples/sample_image_6.png)