File size: 3,264 Bytes
a5858ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
tags:
- text-to-image
- flux
- lora
- diffusers
- template:sd-lora
- ai-toolkit
widget:
-   text: "gomoporn, explicit high-quality photo of two naked young men (age 18\u2013\
        22), fair-skinned, with visible muscles and erect penises, one giving a blowjob\
        \ to the other, under soft natural light, cinematic composition, shot on Canon\
        \ EOS 5D Mark IV, f/1.8, ISO 100"
    output:
        url: samples/1747190856563__000006000_0.jpg
-   text: gomoporn, gay sex scene between two slim, shaved men in a modern bedroom,
        one kneeling behind the other in doggy-style position, natural skin texture,
        soft indoor lighting, shallow depth of field, 35mm lens, high dynamic range
    output:
        url: samples/1747190875889__000006000_1.jpg
-   text: gomoporn, full-body shot of two nude men having anal sex in the woods, forest
        background, sunlight filtering through trees, standing position, visible penetration,
        detailed lighting and shadows, RAW photo style, 4K resolution look
    output:
        url: samples/1747190895192__000006000_2.jpg
-   text: 'gomoporn, close-up of oral sex: one man sucking anothers erect penis, intense
        eye contact, saliva visible, sweat on skin, shot with 85mm lens, sharp focus
        on faces and penis, warm color grading, studio light'
    output:
        url: samples/1747190914485__000006000_3.jpg
-   text: gomoporn, explicit NSFW photo of two nude young gay men with muscular but
        lean bodies, lying on a white bed in missionary position, one with legs raised,
        high-detail skin and shadows, captured at golden hour, soft bokeh background,
        real lens blur
    output:
        url: samples/1747190933759__000006000_4.jpg
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: gomoporn
license: other
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
---

# gomoporn1
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
<Gallery />

## Trigger words

You should use `gomoporn` to trigger the image generation.

## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.

Weights for this model are available in Safetensors format.

[Download](/Faitlesses/gomoporn1/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('Faitlesses/gomoporn1', weight_name='gomoporn1.safetensors')
image = pipeline('gomoporn, explicit high-quality photo of two naked young men (age 18–22), fair-skinned, with visible muscles and erect penises, one giving a blowjob to the other, under soft natural light, cinematic composition, shot on Canon EOS 5D Mark IV, f/1.8, ISO 100').images[0]
image.save("my_image.png")
```

For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)