File size: 3,608 Bytes
6ad2e50
 
 
 
 
 
 
 
 
 
 
 
 
dfae015
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8e25add
dfae015
 
 
 
 
 
 
 
8e25add
b52973c
 
 
 
 
 
 
 
 
 
 
 
 
 
6ad2e50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
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
language:
- en
tags:
- flux
- diffusers
- lora
- replicate
base_model: "black-forest-labs/FLUX.1-dev"
pipeline_tag: text-to-image
widget:
  - text: >-
      A photo of a cartoon muscular man PRIAPUS, shirtless with red tribal
      tattoos, strikes a heroic pose on a mountain peak, arms spread wide
      as if embracing the world, wearing pants. The dramatic lighting and
      his confident expression highlight his dominance and connection with
      the wild terrain.
    example_title: Mountain Peak
    output:
      url: images/priapus1.png
  - text: >-
      A photo of a cartoon muscular man PRIAPUS, shirtless, with red tribal
      tattoos and a rugged beard, flexes one arm while holding a heavy chain
      in the other, radiating raw strength and determination. His focused
      expression and dynamic pose convey power and control.
    example_title: Sexy Chain
    output:
      url: images/priapus2.png
  - text: >-
      A photo of a cartoon muscular man PRIAPUS, shirtless with red tribal
      tattoos, wearing tight black riding pants and gloves, leans slightly
      forward as he grips the handlebars of a sleek motorcycle, his strong
      arms flexed with control and precision. His intense gaze is focused
      ahead, while his confident smirk suggests he’s reveling in the thrill
      of the ride. The sunlight highlights his tattoos and muscular frame as
      the sparkling beach and rolling waves create a vibrant, carefree backdrop.
    example_title: Beach Motorcycle
    output:
      url: images/priapus3.jpg
  - text: >-
      A photo of a cartoon muscular man PRIAPUS, in snowboarding uniform
      with goggle on the neck, with red tribal tattoos and a rugged beard,
      flexes one arm while holding a snowboard in the other, radiating raw
      strength and determination. His flirty and suggestive expression
      convey sports masculinity
    example_title: Snowboarding
    output:
      url: images/priapus4.jpg
  - text: >-
      A photo of a cartoon muscular man PRIAPUS, shirtless with fiery red
      tribal tattoos, wearing ripped denim pants, sits on a throne of skulls
      in a shadowy cave, his mischievous grin hinting at his dominance and cunning.
    example_title: Skull Chair 1
    output:
      url: images/priapus5.png
  - text: >-
      A photo of a cartoon muscular man PRIAPUS, shirtless with fiery red
      tribal tattoos, wearing ripped denim pants, sits on a throne of skulls
      in a shadowy cave, his mischievous grin hinting at his dominance and cunning.
    example_title: Skull Chair 2
    output:
      url: images/priapus6.png
instance_prompt: PRIAPUS
---

# Flux Dev Priapus

<Gallery />

Trained on Replicate using:

https://replicate.com/ostris/flux-dev-lora-trainer/train


## Trigger words
You should use `PRIAPUS` to trigger the image generation.


## 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.float16).to('cuda')
pipeline.load_lora_weights('tugan0329/flux-dev-priapus', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]
```

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)