|
--- |
|
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) |
|
|