update
Browse files
README.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
**[Lustly.ai](https://lustly.ai)** is an upcoming platform for ethical personalized erotic imagery.
|
3 |
+
|
4 |
+
Mark your calendars for a **limited release this December**. By joining our waitlist before the launch, you'll gain exclusive access to participate in this initial rollout.
|
5 |
+
|
6 |
+
We are thrilled to be introducing our first uncensored Flux model:
|
7 |
+
### Flux Lustly.ai Uncensored v1: Full Frontal Nudity!
|
8 |
+
|
9 |
+
You've seen female nudity in Flux; now, we're evening the playing field by introducing male nudity as well.
|
10 |
+
|
11 |
+
- **Performance:**
|
12 |
+
- **Reliable on Flux dev**
|
13 |
+
- **Promising on schnell model**, though slightly less stable. High-quality results are still very achievable.
|
14 |
+
|
15 |
+
- **Testing:**
|
16 |
+
- Focused on full dev and schnell models using diffusers.
|
17 |
+
- **Community Call:** We haven't tested in other environments like Forge or ComfyUI, nor on quantized models. **Let us know** if you achieve good results!
|
18 |
+
|
19 |
+
## To Use This Model:
|
20 |
+
|
21 |
+
To integrate this Lora into your Flux pipeline, use the following standard method:
|
22 |
+
|
23 |
+
```python
|
24 |
+
from diffusers import AutoPipelineForText2Image
|
25 |
+
import torch
|
26 |
+
import os
|
27 |
+
|
28 |
+
pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16) # or black-forest-labs/FLUX.1-schnell
|
29 |
+
pipeline.to("cuda")
|
30 |
+
|
31 |
+
pipeline.load_lora_weights(lora_path,
|
32 |
+
weight_name="flux_lustly-ai_v1.safetensors",
|
33 |
+
adapter_name="flux-lustly-v1")
|
34 |
+
|
35 |
+
pipeline.set_adapters(["flux-lustly-v1"], adapter_weights=[1])
|
36 |
+
|
37 |
+
out = pipeline(
|
38 |
+
prompt=prompt,
|
39 |
+
guidance_scale=4,
|
40 |
+
height=768,
|
41 |
+
width=768,
|
42 |
+
num_inference_steps=20,
|
43 |
+
).images[0]
|
44 |
+
display(out)
|
45 |
+
```
|
46 |
+
|
47 |
+
## Roadmap
|
48 |
+
|
49 |
+
Looking ahead, we're excited to develop further iterations of our open-source base model, expanding into:
|
50 |
+
- More diverse poses
|
51 |
+
- More, ehm, dynamic interactions between individuals
|
52 |
+
- All sorts of kinks
|
53 |
+
|
54 |
+
## Join the Movement
|
55 |
+
|
56 |
+
**Join our waitlist now** and consider supporting the project by purchasing one of our **Early Adopter Packs**. Here's what you'll secure:
|
57 |
+
- Pre-sale of compute credits for image generation
|
58 |
+
- **Early access** to further iterations of our base model
|
59 |
+
- **Exclusive access** to our proprietary models: visit [Lustly.ai](https://lustly.ai)
|