Abhaykoul commited on
Commit
85a2f08
β€’
1 Parent(s): 9c63816

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: black-forest-labs/FLUX.1-schnell
3
+ license: other
4
+ language:
5
+ - en
6
+ - pt
7
+ - th
8
+ library_name: diffusers
9
+ pipeline_tag: text-to-image
10
+ tags:
11
+ - UnfilteredAI
12
+ - 3d
13
+ - text-to-image
14
+ - not-for-all-audiences
15
+ ---
16
+
17
+ **Model Name:** UnfilteredAI/NSFW-Flux-v1 πŸš€
18
+
19
+ **Type:** Text-to-Image Generator
20
+ <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>
21
+ **Description:**
22
+
23
+ **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! 🌟
24
+
25
+ **Features:**
26
+ - **πŸ–ΌοΈ Uncensored Output:** The model generates uncensored and potentially explicit images based on textual inputs, providing complete creative freedom.
27
+ - **⚑ Tensor Type:** Utilizes FP16 tensor type for optimized performance and efficiency, ensuring quick and smooth generation.
28
+ - **πŸ’ͺ Model Size:** With 12 billion parameters, NSFW-Flux-v1 offers an extensive capacity for learning and generating diverse and detailed imagery.
29
+ - **πŸŒ€ 3D Style Rendering:** Enhanced with 3D style/image rendering capability to create more lifelike and dynamic images. (Use "3d", "3d style" in your prompt)
30
+ - **πŸ”„ Continuous Improvement:** The model is continually updated and refined to improve its performance and expand its capabilities.
31
+
32
+ **Usage Guidelines:**
33
+ - **πŸ›‘οΈ 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.
34
+ - **πŸ‘₯ 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.
35
+
36
+
37
+ ```python
38
+ import torch
39
+ from diffusers import FluxPipeline
40
+
41
+ pipe = FluxPipeline.from_pretrained("UnfilteredAI/NSFW-Flux-v1", torch_dtype=torch.bfloat16)
42
+ pipe.enable_model_cpu_offload() #save some VRAM by offloading the model to CPU. Remove this if you have enough GPU power
43
+
44
+ prompt = "A cat holding a sign that says hello world"
45
+ image = pipe(
46
+ prompt,
47
+ guidance_scale=0.0,
48
+ num_inference_steps=4,
49
+ max_sequence_length=256,
50
+ generator=torch.Generator("cpu").manual_seed(0)
51
+ ).images[0]
52
+ image.save("NSFW-Flux-v1")
53
+ ```
54
+