File size: 3,188 Bytes
56642c1
9ac2862
689bc95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ffe10fa
d8f4fc9
90ae78f
689bc95
 
 
 
 
ab19835
689bc95
 
2ae34a8
 
 
689bc95
2ae34a8
 
689bc95
 
 
 
 
 
 
 
 
 
2ae34a8
 
 
d446f3c
2ae34a8
ffe10fa
2ae34a8
ffe10fa
2ae34a8
ffe10fa
 
 
 
 
2ae34a8
ffe10fa
 
 
2ae34a8
ffe10fa
2ae34a8
3fd00d3
2ae34a8
3fd00d3
ffe10fa
3fd00d3
 
7513e20
3fd00d3
ffe10fa
67346d6
 
ffe10fa
 
9ac2862
3fd00d3
67346d6
3fd00d3
ffe10fa
 
 
 
 
 
 
 
 
 
d446f3c
2ae34a8
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
tags:
- text-to-image
- lora
- diffusers
- flux-diffusion
- nude
- art
- Racing
- SportsCar
- Speed
- MotorSport
- CarDesign
- F1
- AutoDesign
- Futuristic
- Cyberpunk
- AbstractArt
- Neon
- SciFi
- NudeArt
- BodyArt
- Sensual
- StylizedPortrait
- CharacterDesign
- FantasyCharacter
- Cinematic

inference: true
widget:
- text: a red Nissan GTR R35 in a rainy city scene
- text: a futuristic neon-lit city with cars flying in the background
- text: a cyberpunk-inspired motorcycle speeding through a glowing tunnel
- text: a hyper-realistic human figure using nudify_xl_lite
- text: a stylized doll-like character using edgBondDollLikenessv1
- text: Erotic style with beautiful model, luxurious, rich, full make up, full accessories, luxury clothing, painted nails, full body shot, posing expression, short strapless dress, very high platform sharp thin heels, glamours, bimbo, modern style scene, walking in a modern style Miami downtown beautiful frd_woman, perfect frd_face, perfect frd_body, large breasts using edgBondDollLikenessv1, nudify_xl_lite
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: a {subject} in a {scene}
pipeline_tag: text-to-image
library_name: diffusers
metrics:
- FID
license: creativeml-openrail-m
model-index:
- name: Xena
  results:
  - task:
      type: text-to-image
    dataset:
      name: Synthetic Dataset
      type: image-generation
    metrics:
    - type: FID
      value: 0
extra:
  inference_api: true
---

# Xena

<Gallery />

## Model description

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.

## Download model

Weights for this model are available in Safetensors format.

[Download them here](#).

## How to Use

```python
from diffusers import StableDiffusionPipeline
import torch

# Load the base pipeline
pipe = StableDiffusionPipeline.from_pretrained("Xena18284/Xena", torch_dtype=torch.float16)

# Load multiple LoRA weights
pipe.load_lora_weights("aidmaMJ61-FLUX-v05.safetensors")  # Midjourney to Flux
pipe.load_lora_weights("racing_car_style_v1.safetensors")  # Racing Car Style
pipe.load_lora_weights("nudify_xl_lite.safetensors")  # Nudify XL Lite
pipe.load_lora_weights("edgBondDollLikenessv1.safetensors")  # Edg Bond Doll Likeness

# Generate an image
prompt = "A futuristic racing car on a neon-lit street, ultra-detailed, cyberpunk"
image = pipe(prompt).images[0]
image.save("output.png")

# Example usage of Nudify XL Lite
prompt_nudify = "A hyper-realistic human figure, cinematic lighting"
image_nudify = pipe(prompt_nudify).images[0]
image_nudify.save("nudify_output.png")

# Example usage of Edg Bond Doll Likeness
prompt_doll = "A stylized doll-like character with intricate details, soft lighting"
image_doll = pipe(prompt_doll).images[0]
image_doll.save("doll_output.png")
```