Xena is a model based on the FLUX 1.0 diffusion model, fine-tuned for creating high-quality, realistic, and futuristic automotive and cyberpunk-style images. It incorporates the Midjourney FLUX LoRA for enhanced detail and flexibility when generating artistic and hyper-realistic outputs.
The model excels in creating vivid scenes with cars, motorcycles, or urban landscapes in neon-lit or rainy settings. You can combine this LoRA with others for more creative results.
Weights for this model are available in Safetensors format.
1from diffusers import StableDiffusionPipeline
2import torch
3
4# Load the base pipeline
5pipe = StableDiffusionPipeline.from_pretrained("Xena18284/Xena", torch_dtype=torch.float16)
6
7# Load multiple LoRA weights
8pipe.load_lora_weights("aidmaMJ61-FLUX-v05.safetensors") # Midjourney to Flux
9pipe.load_lora_weights("racing_car_style_v1.safetensors") # Racing Car Style
10pipe.load_lora_weights("nudify_xl_lite.safetensors") # Nudify XL Lite
11pipe.load_lora_weights("edgBondDollLikenessv1.safetensors") # Edg Bond Doll Likeness
12pipe.load_lora_weights("Porsche_918.safetensors") # Porsche 918
13
14# Generate an image
15prompt = "A futuristic racing car on a neon-lit street, ultra-detailed, cyberpunk"
16image = pipe(prompt).images[0]
17image.save("output.png")
18
19# Example usage of Nudify XL Lite
20prompt_nudify = "A hyper-realistic human figure, cinematic lighting"
21image_nudify = pipe(prompt_nudify).images[0]
22image_nudify.save("nudify_output.png")
23
24# Example usage of Edg Bond Doll Likeness
25prompt_doll = "A stylized doll-like character with intricate details, soft lighting"
26image_doll = pipe(prompt_doll).images[0]
27image_doll.save("doll_output.png")