--- tags: - text-to-image - stable-diffusion - lora - diffusers - fluxpipeline - flux base_model: black-forest-labs/FLUX.1-dev license: creativeml-openrail-m --- # FLUX Uncensored LoRA ## Model Description 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. 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. > **Warning:** This model allows the generation of explicit content. Users should exercise caution and adhere to legal and ethical guidelines. ## License This LoRA extension follows the **FLUX-1-dev Non-Commercial License**. - **License Name:** flux-1-dev-non-commercial-license - **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) ## How to Use Below is an example of how to use the FLUX Uncensored LoRA with the `diffusers` library: ```python from diffusers import AutoPipelineForText2Image import torch # Load the base model pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda') # Load the uncensored LoRA weights pipeline.load_lora_weights('enhanceaiteam/Flux-uncensored', weight_name='lora.safetensors') # Generate an image with an uncensored NSFW prompt image = pipeline('a naked cute girl').images[0] image.show() ``` ## Trigger Words Use the following trigger words to guide the model toward generating NSFW content: - **nsfw** - **naked** - **pron** - **kissing** - **erotic** - **nude** - **sensual** - **adult content** - **explicit** These keywords, along with descriptive prompts, help the model generate explicit imagery. ## Model Details - **Base Model:** `black-forest-labs/FLUX.1-dev` - **LoRA Weights:** `enhanceaiteam/Flux-uncensored` - **LoRA Weight File:** `lora.safetensors` - **Torch Data Type:** `torch.bfloat16` - **Hardware Requirement:** CUDA-enabled GPU recommended for optimal performance. ## Disclaimer 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.