Text-to-Image
Diffusers
stable-diffusion
lora
fluxpipeline
flux
Not-For-All-Audiences
pranavajay commited on
Commit
acffb41
1 Parent(s): 93e9f26

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md CHANGED
@@ -9,3 +9,67 @@ tags:
9
  base_model: black-forest-labs/FLUX.1-dev
10
  license: creativeml-openrail-m
11
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  base_model: black-forest-labs/FLUX.1-dev
10
  license: creativeml-openrail-m
11
  ---
12
+
13
+ # FLUX Uncensored LoRA
14
+
15
+ ## Model Description
16
+
17
+ The **FLUX Uncensored LoRA** is an enhancement designed for the base model `black-forest-labs/FLUX.1-dev`. It enables explicit, unrestricted generation of images using text prompts. The LoRA weights have been fine-tuned to remove the base model's content restrictions, allowing for the generation of NSFW (Not Safe For Work) and other uncensored content.
18
+
19
+ This LoRA extension can be loaded into the `FLUX.1-dev` pipeline using the `diffusers` library. It is optimized for high-quality, explicit image generation based on user-provided prompts. The model is intended for research and personal use, and adheres to the non-commercial license terms.
20
+
21
+ > **Warning:** This model allows the generation of explicit content. Users should exercise caution and adhere to legal and ethical guidelines.
22
+
23
+ ## License
24
+
25
+ This LoRA extension follows the **FLUX-1-dev Non-Commercial License**.
26
+
27
+ - **License Name:** flux-1-dev-non-commercial-license
28
+ - **License Link:** [https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md)
29
+
30
+ ## How to Use
31
+
32
+ Below is an example of how to use the FLUX Uncensored LoRA with the `diffusers` library:
33
+
34
+ ```python
35
+ from diffusers import AutoPipelineForText2Image
36
+ import torch
37
+
38
+ # Load the base model
39
+ pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
40
+
41
+ # Load the uncensored LoRA weights
42
+ pipeline.load_lora_weights('enhanceaiteam/Flux-uncensored', weight_name='lora.safetensors')
43
+
44
+ # Generate an image with an uncensored NSFW prompt
45
+ image = pipeline('a naked cute girl').images[0]
46
+ image.show()
47
+ ```
48
+
49
+ ## Trigger Words
50
+
51
+ Use the following trigger words to guide the model toward generating NSFW content:
52
+
53
+ - **nsfw**
54
+ - **naked**
55
+ - **pron**
56
+ - **kissing**
57
+ - **erotic**
58
+ - **nude**
59
+ - **sensual**
60
+ - **adult content**
61
+ - **explicit**
62
+
63
+ These keywords, along with descriptive prompts, help the model generate explicit imagery.
64
+
65
+ ## Model Details
66
+
67
+ - **Base Model:** `black-forest-labs/FLUX.1-dev`
68
+ - **LoRA Weights:** `enhanceaiteam/Flux-uncensored`
69
+ - **LoRA Weight File:** `lora.safetensors`
70
+ - **Torch Data Type:** `torch.bfloat16`
71
+ - **Hardware Requirement:** CUDA-enabled GPU recommended for optimal performance.
72
+
73
+ ## Disclaimer
74
+
75
+ This model is capable of generating uncensored and explicit content. It should be used responsibly and within the bounds of the law. The creators do not endorse illegal or unethical use of the model. Content generated using this model should comply with platform guidelines and local regulations regarding NSFW material.