--- tags: - text-to-image - flux - lora - diffusers - template:sd-lora - ai-toolkit widget: - text: closeup shot of KOKUMKF2512NVY output: url: samples/1742333475155__000004000_0.jpg - text: A full-length fashion photograph of a woman wearing a traditional South Asian outfit in deep royal blue. The ensemble consists of a long kurta with intricate gold and silver embroidery along the neckline, center, and cuffs, paired with matching wide-leg palazzo pants that have decorative borders. A coordinating dupatta with small gold accents and trim drapes from one shoulder. She's accessorized with gold jhumka earrings and bracelets. The background is an artistic abstract gradient of deep indigo and teal tones with subtle gold brush strokes that complement the outfit. Soft, dramatic lighting creates gentle shadows and highlights the clothing details. The composition has a high-fashion editorial quality with a modern artistic flair. output: url: samples/1742333484669__000004000_1.jpg - text: A full-length fashion photograph of a woman wearing a traditional South Asian outfit in deep royal blue. The ensemble features a long kurta with intricate gold and silver embroidery along the neckline, center, and cuffs, paired with matching wide-leg palazzo pants with decorative borders. A coordinating dupatta with small gold accents and trim drapes elegantly. She's accessorized with gold jhumka earrings and bracelets. The setting is a grand Mughal-inspired courtyard with ornate archways, marble floors with geometric patterns, and a water fountain in the background. Golden hour sunlight filters through latticework windows, casting warm patterns across the scene. The architectural elements echo the detailed embroidery of the outfit, creating a harmonious visual narrative between the subject and surroundings. output: url: samples/1742333494161__000004000_2.jpg base_model: black-forest-labs/FLUX.1-dev instance_prompt: KOKUMKF2512NVY 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 --- # KOKUMKF2512NVY Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) ## Trigger words You should use `KOKUMKF2512NVY` 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](/iumrfarooq/KOKUMKF2512NVY/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('iumrfarooq/KOKUMKF2512NVY', weight_name='KOKUMKF2512NVY.safetensors') image = pipeline('closeup shot of KOKUMKF2512NVY').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)