--- license: other license_name: bespoke-lora-trained-license license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=False&allowDifferentLicense=True tags: - text-to-image - stable-diffusion - lora - diffusers - template:sd-lora - migrated - person - photorealistic - sexy - female - sports - instagram - woman - actress - celebrity - girls - portraits - realistic - tennis base_model: black-forest-labs/FLUX.1-dev instance_prompt: makraineflux widget: - text: 'photo of woman, makraineflux, , ' output: url: >- 31249405.jpeg - text: 'photo of woman, makraineflux, Long-Sleeve Shirt at Casual Shopping, ' output: url: >- 31249394.jpeg - text: 'photo of woman, makraineflux, Tunic at Picnic in the Garden, ' output: url: >- 31249395.jpeg - text: 'photo of woman, makraineflux, Blazer at Business Meeting, ' output: url: >- 31249398.jpeg - text: 'photo of woman, makraineflux, Cardigan at Library, ' output: url: >- 31249399.jpeg - text: 'photo of woman, makraineflux, , ' output: url: >- 31249400.jpeg - text: 'photo of woman, makraineflux, Strapless Top at Rooftop Bar, ' output: url: >- 31249401.jpeg - text: 'photo of woman, makraineflux, Zip-Up Hoodie at Movie Night, ' output: url: >- 31249402.jpeg - text: 'photo of woman, makraineflux, Flannel Shirt at Forest Hike, ' output: url: >- 31249403.jpeg - text: 'photo of woman, makraineflux, College Jersey at College Football Game, ' output: url: >- 31249406.jpeg - text: 'photo of woman, makraineflux, Poncho at Autumn Flea Market, ' output: url: >- 31249404.jpeg - text: 'photo of woman, makraineflux, Wetsuit Top at Scuba Diving Trip, ' output: url: >- 31249407.jpeg - text: 'photo of woman, makraineflux, T-Shirt at Amusement Park, ' output: url: >- 31249409.jpeg - text: 'photo of woman, makraineflux, Blouse at Office, ' output: url: >- 31249410.jpeg - text: 'photo of woman, makraineflux, Sweater at Winter Hike, ' output: url: >- 31249411.jpeg - text: 'photo of woman, makraineflux, Hoodie at Home, ' output: url: >- 31249412.jpeg --- # Makenzie Raine FLUX + SDXL + SD 1.5 ([CivitAI](https://civitai.com/models/)) ## Model description ## Trigger words You should use `makraineflux` to trigger the image generation. ## Download model Weights for this model are available in Safetensors format. [Download](/Keltezaa/makenzie-raine-flux-sdxl-sd-1-5/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 device = "cuda" if torch.cuda.is_available() else "cpu" pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device) pipeline.load_lora_weights('Keltezaa/makenzie-raine-flux-sdxl-sd-1-5', weight_name='makraineflux.safetensors') image = pipeline('photo of woman, makraineflux, Hoodie at Home, ').images[0] ``` 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)