Edit model card

Model Name: UnfilteredAI/NSFW-Flux-v1 πŸš€

Type: Text-to-Image Generator Buy Me A Coffee Description: Description:

NSFW-Flux-v1 is a 12 billion parameter rectified flow transformer capable of generating images from text descriptions. Finetuned by UnfilteredAI, this model is designed to produce a wide range of images, including explicit and NSFW (Not Safe For Work) images from textual inputs. Whether you're looking for artistic, realistic, or fantastical imagery, NSFW-Flux-v1 has got you covered! 🌟

Features:

  • πŸ–ΌοΈ Uncensored Output: The model generates uncensored and potentially explicit images based on textual inputs, providing complete creative freedom.
  • ⚑ Tensor Type: Utilizes BF16 tensor type for optimized performance and efficiency, ensuring quick and smooth generation.
  • πŸ’ͺ Model Size: With 12 billion parameters, NSFW-Flux-v1 offers an extensive capacity for learning and generating diverse and detailed imagery.
  • πŸŒ€ 3D Style Rendering: Enhanced with 3D style/image rendering capability to create more lifelike and dynamic images. (Use "3d", "3d style" in your prompt)
  • πŸ”„ Continuous Improvement: The model is continually updated and refined to improve its performance and expand its capabilities.

Usage Guidelines:

  • πŸ›‘οΈ Responsible Use: Exercise discretion and responsibility when generating content with this model. The nature of the content generated can be explicit, so use it wisely.
  • πŸ‘₯ Age Restriction: Due to the explicit nature of the generated content, usage is restricted to individuals over the legal age in their jurisdiction. Ensure compliance with local laws and regulations.
import torch
from diffusers import FluxPipeline

pipe = FluxPipeline.from_pretrained("UnfilteredAI/NSFW-Flux-v1", torch_dtype=torch.bfloat16)
pipe.enable_model_cpu_offload() #save some VRAM by offloading the model to CPU. Remove this if you have enough GPU power

prompt = "A cat holding a sign that says hello world"
image = pipe(
    prompt,
    guidance_scale=0.0,
    num_inference_steps=4,
    max_sequence_length=256,
    generator=torch.Generator("cpu").manual_seed(0)
).images[0]
image.save("NSFW-Flux-v1.png")
Downloads last month
8,462
Inference Examples
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.

Model tree for UnfilteredAI/NSFW-Flux-v1

Finetuned
(30)
this model