metadata
tags:
- text-to-image
- lora
- diffusers
- template:diffusion-lora
widget:
- text: A futuristic racing car on a neon-lit street at night
output:
url: images/9982c7dd-f736-4960-9244-8e89567101a8.jpg
base_model: strangerzonehf/Flux-Midjourney-Mix2-LoRA
instance_prompt: null
Xena
About the Model
Xena is a LoRA model fine-tuned for creating stunning, futuristic racing car imagery. It is based on the Flux-Midjourney-Mix2-LoRA and is optimized for use with car-themed prompts, delivering highly detailed and vibrant results.
Download the Model
Weights for this model are available in Safetensors format. You can download them from the Files & Versions tab.
How to Use
Using Diffusers (Python Library)
Here's how you can use the model with the diffusers
library:
from diffusers import StableDiffusionPipeline
from safetensors.torch import load_file
# Load the base pipeline
pipe = StableDiffusionPipeline.from_pretrained("strangerzonehf/Flux-Midjourney-Mix2-LoRA")
# Load the LoRA weights
lora_weights = load_file("racing_car_style_v1.safetensors")
pipe.load_lora_weights(lora_weights)
# Generate an image
prompt = "A futuristic racing car on a neon-lit street at night"
image = pipe(prompt).images[0]
image.save("racing_car_output.png")