← back to catalog · registered 2026-09-14 09:56

Spamspamspam277353/Flux-NSFW-uncensored

Spamspamspam277353 Flux image-gen
Abliteration classifier · v1.0.0
M-U
Primary method

Uncensored (method unknown)

No other method signals detected in this model.
Confidence
LOW
Why this label 3 signals
Weak or ambiguous signals. Best guess based on catalog patterns; treat as tentative and check the evidence below.
  • 'uncensored' in name/tags but no 'abliterated' marker
  • method not identifiable from author declaration alone
  • may be DPO fine-tune, prompt engineering, or unknown technique
Refusal direction extraction

No specific extraction method could be identified for this model. The producer either did not document it or used a proprietary pipeline.

What is a refusal direction? →
Downloads · 30-day
0
Likes
0
Model age
2d ago
created 2026-09-14
Downloads over time
Now0from0↑0%
00110 on Sep 140 on Sep 16Sep
Sep 14 → Sep 16 · 3 snapshots · spans 2 days

Genealogy 0 direct forks

Full fork graph →

This model's place in the market. Above: what it was derived from. Below: the tree of everything derived from it.

Metadata

Languages
en
Tags
text-to-image en base_model:black-forest-labs/FLUX.1-dev base_model:finetune:black-forest-labs/FLUX.1-dev license:creativeml-openrail-m region:us not-for-all-audiences

Related

Total size
656 MB
Files
3
Quantizations
1
Registered
2026-09-14 09:56
Last updated on HF
2026-09-14 09:54

Files by quantization

Auxiliary files 3 files 656 MB
lora.safetensors 656 MB 5ad714d2 download
README.md 1.91 KB 3ed74a12 download
.gitattributes 1.48 KB a6344aac download

README current version from Hugging Face


license: creativeml-openrail-m
language:

  • en
    base_model:
  • black-forest-labs/FLUX.1-dev
    pipeline_tag: text-to-image

NSFW-Uncensored

Uncensored Image Generation Model

Model Description

This model is a playground that minimizes censorship restrictions, allowing exploration of the technical possibilities of AI-based image generation. Through various prompts, you can test censorship boundaries and verify the actual performance of image generation AI.

Example code

import torch
from diffusers import AutoPipelineForText2Image

# PEFT 라이브러리 필요 (LoRA 로딩용)
from peft import PeftModel, PeftConfig

# 기기 설정
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")

# 기본 모델 로드
print("기본 FLUX 모델 로드 중...")
pipe = AutoPipelineForText2Image.from_pretrained(
    "black-forest-labs/FLUX.1-dev", 
    torch_dtype=torch.float16  # bfloat16 대신 float16 사용
)
pipe.to(device)

# Uncensored LoRA 로드
print("Uncensored LoRA 로드 중...")
pipe.load_lora_weights(
    'Heartsync/Flux-NSFW-uncensored', 
    weight_name='lora.safetensors',
    adapter_name="uncensored"
)

# 이미지 생성
prompt = "A woman in a sheer white dress standing on a beach at sunset, backlit so her silhouette is visible through the thin fabric, shot with Canon EOS R5, 85mm f/1.2 lens, golden hour natural lighting, professional composition, hyperrealistic detail, masterpiece quality, 8K resolution."
negative_prompt = "text, watermark, signature, cartoon, anime, illustration, painting, drawing, low quality, blurry"

# 시드 설정
seed = 42
generator = torch.Generator(device=device).manual_seed(seed)

# 이미지 생성
image = pipe(
    prompt=prompt,
    negative_prompt=negative_prompt,
    guidance_scale=7.0,
    num_inference_steps=28,
    width=1024,
    height=1024,
    generator=generator,
).images[0]

# 이미지 저장
image.save("generated_image.png")

README history 1 version

The author's README evolved over time. Click a version to see its content at that point.

  1. 2026-09-14Duplicate from Heartsync/Flux-NSFW-uncensored2d2d8441.9 KB
    Loading...
Catalog is the map. Apps are the tools.

Run models on your own machine, not in the cloud.

Every model page has an "Open in app" button that hands off directly to a local runtime of your choice - Infrahuman, LM Studio, or Ollama. No API keys, no subscription, no prompt leakage.