Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,32 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
library_name: diffusers
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
library_name: diffusers
|
4 |
+
base_model:
|
5 |
+
- black-forest-labs/FLUX.1-dev
|
6 |
+
tags:
|
7 |
+
- uncensored
|
8 |
+
---
|
9 |
+
# flux-uncensored
|
10 |
+
|
11 |
+
## Summary
|
12 |
+
Flux base model merged with uncensored LoRA. This model is not for those looking for "safe" or watered-down outputs. It’s optimized for real-world use with fewer constraints.
|
13 |
+
|
14 |
+
## Specs
|
15 |
+
* Model: Flux base
|
16 |
+
* LoRA: Uncensored version, merged directly
|
17 |
+
|
18 |
+
## Usage
|
19 |
+
pretty straight forward plug-and-play model
|
20 |
+
|
21 |
+
```python
|
22 |
+
from diffusers import FluxPipeline
|
23 |
+
import torch
|
24 |
+
|
25 |
+
pipe = FluxPipeline.from_pretrained("shauray/FLUX-UNCENSORED-merged", torch_dtype=torch.float16)
|
26 |
+
pipe.enable_model_cpu_offload()
|
27 |
+
|
28 |
+
prompt = "A mystic cat with a sign that says hello world!"
|
29 |
+
image = pipe(prompt, guidance_scale=3.5, num_inference_steps=28, generator=torch.manual_seed(0)).images[0]
|
30 |
+
image.save("flux-dev-loaded.png")
|
31 |
+
```
|
32 |
+
this README has what you'd need, it's a merge from [Uncensored LoRA on CivitAI]([https://civitai.com/models/875879/flux-lustlyai-uncensored-v1-nsfw-lora-with-male-and-female-nudity)
|