File size: 1,016 Bytes
6857a1d |
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 |
---
license: mit
library_name: diffusers
base_model:
- black-forest-labs/FLUX.1-dev
tags:
- uncensored
---
# flux-uncensored
## Summary
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.
## Specs
* Model: Flux base
* LoRA: Uncensored version, merged directly
## Usage
pretty straight forward plug-and-play model
```python
from diffusers import FluxPipeline
import torch
pipe = FluxPipeline.from_pretrained("shauray/FLUX-UNCENSORED-merged", torch_dtype=torch.float16)
pipe.enable_model_cpu_offload()
prompt = "A mystic cat with a sign that says hello world!"
image = pipe(prompt, guidance_scale=3.5, num_inference_steps=28, generator=torch.manual_seed(0)).images[0]
image.save("flux-dev-loaded.png")
```
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) |