File size: 3,293 Bytes
9e2d367
 
 
 
 
 
 
 
 
 
 
845c381
9e2d367
 
845c381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9e2d367
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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
instance_prompt: MLLW
widget:
- text: >-
    Generate an image of a male character in his mid-30s, dressed in a sleek and
    agile Assassin's Creed-inspired outfit. He should be standing in a dramatic
    pose, with his feet shoulder-width apart and his weight evenly distributed
    between both legs.  **Clothing:**  * The character should wear a white
    hooded cloak with a subtle eagle emblem on the shoulder, similar to Ezio's
    attire from Assassin's Creed II. * His outfit should consist of a
    combination of leather, fabric, and metal armor pieces, with a predominantly
    dark grey and white color scheme. * He should have a utility belt around his
    waist, complete with pouches, daggers, and other assassin tools. 
    **Accessories:**  * The character should hold a pair of curved blades,
    similar to Altaïr's signature weapons, in each hand. * He should wear a
    leather glove on his left hand, with a hidden blade mechanism. * A
    silver-colored Assassin's Creed emblem should adorn his chest, either as a
    brooch or a pendant.  **Environment:**  * The character should be standing
    on a rooftop or a ledge, overlooking a sprawling cityscape at dusk or dawn.
    * The background should feature a mix of medieval and Renaissance-era
    architecture, with buildings, towers, and churches. * The atmosphere should
    be moody and atmospheric, with a warm orange glow from the setting sun or
    rising moon.  **Lighting:**  * The lighting should be dramatic, with strong
    shadows cast across the character's face and body. * A warm, golden light
    should illuminate the character's features, highlighting his determined
    expression.  **Expression:**  * The character's face should convey a sense
    of focus, determination, and intensity. * His eyes should be narrowed, with
    a hint of a squint, as if he's scanning the horizon for potential threats. 
    **Style:**  * The image should be rendered in a highly detailed, realistic
    style, with textures, wrinkles, and other subtle details. * The overall
    aesthetic should evoke a sense of gritty realism, while still maintaining a
    sense of fantasy and adventure.
  output:
    url: images/example_abvc6bbvt.png

---

# Mllw

<Gallery />

Trained on Replicate using:

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


## Trigger words
You should use `MLLW` 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('BKKSPY/MLLW', 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)