File size: 2,653 Bytes
85a2f08
 
17c791f
85a2f08
17c791f
 
 
85a2f08
 
 
17c791f
 
 
 
85a2f08
 
 
 
 
 
d392d14
85a2f08
 
 
 
 
6539ecf
85a2f08
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d392d14
17c791f
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
base_model: black-forest-labs/FLUX.1-schnell
license: apache-2.0
language:
- en
- pt
- th
library_name: diffusers
pipeline_tag: text-to-image
tags:
- UnfilteredAI
- 3d
- text-to-image
- not-for-all-audiences
---

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

**Type:** Text-to-Image Generator
<a href="https://www.buymeacoffee.com/oevortex" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
**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.


```python
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")
```