File size: 473 Bytes
407f579
124310f
 
26c4735
124310f
 
cc1e960
124310f
 
cc1e960
124310f
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
pip install diffusers
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-v2', weight_name='lora.safetensors')

# Generate an image with an uncensored NSFW prompt
image = pipeline('a naked cute girl').images[0]
image.show()