|
--- |
|
license: other |
|
license_name: bespoke-lora-trained-license |
|
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- migrated |
|
- celebrity |
|
- matrix |
|
- laurence fishburne |
|
- morpheus |
|
|
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: m0rf3 |
|
widget: |
|
- text: 'bokeh, portrait photo, m0rf3 wears a richly decorated purple robe, with gold embroidery. He is sitting on a red armchair, on the right palm of his hand he has a red pill, on the left palm a blue pill, Wear glasses' |
|
|
|
output: |
|
url: >- |
|
31905264.jpeg |
|
- text: 'bokeh, portrait photo, m0rf3 wears a long black suit with an armored jacket and mirrored sunglasses. The setting is an interrogation room, with metal chairs and a large one-way mirror reflecting behind him' |
|
|
|
output: |
|
url: >- |
|
31905265.jpeg |
|
- text: 'bokeh, portrait photo, m0rf3 is dressed in a reflective silver cape and a tight suit with glowing green details. He is in a white room with control panels covered in enigmatic symbols.' |
|
|
|
output: |
|
url: >- |
|
31905263.jpeg |
|
- text: 'bokeh, portrait photo, m0rf3 is dressed in a matte black suit and a balaclava, ready for an infiltration. The setting is a skyscraper rooftop at night, with city lights in the distance' |
|
|
|
output: |
|
url: >- |
|
31905512.jpeg |
|
- text: 'bokeh, portrait photo, m0rf3 Matrix background, m0rf3 wears black leather jacket with tie and glasses' |
|
|
|
output: |
|
url: >- |
|
31905764.jpeg |
|
- text: 'bokeh, portrait photo, m0rf3 Matrix background, m0rf3 wears black leather jacket with tie and glasses' |
|
|
|
output: |
|
url: >- |
|
31905763.jpeg |
|
|
|
--- |
|
|
|
# Morpheus (Laurence Fishburne) - Matrix - FLUX |
|
|
|
<Gallery /> |
|
|
|
|
|
|
|
|
|
|
|
## Model description |
|
|
|
<p><strong><span style="color:rgb(193, 194, 197)">Support my work 1 euro</span></strong><span style="color:rgb(193, 194, 197)">: </span><a target="_blank" rel="ugc" href="https://ko-fi.com/sdprompt"><span style="color:rgb(193, 194, 197)">https://ko-fi.com/sdprompt</span></a></p><p></p><h3 id="want-a-customprivate-lora-get-it-here-:-commissions-v097lxeri"><strong><span style="color:rgb(121, 80, 242)">Want a Custom/private LoRA? Get it here : </span></strong><a target="_blank" rel="ugc" href="https://ko-fi.com/sdprompt/commissions?commissionAlias=f8c2ea8b06&amp;openCommissionsMenu=True#buyShopCommissionModal"><strong><span style="color:rgb(250, 82, 82)">Commissions</span></strong></a></h3><p></p><p><em><span style="color:rgb(34, 139, 230)">I am one of the Top and Leggendari creators of the models of CivitAI's clebrity, who returned to the top 10 in 2 years</span></em>.</p><p></p><p>Support my work with a simple donation of 1 euro<br /><a target="_blank" rel="ugc" href="https://ko-fi.com/sdprompt">https://ko-fi.com/sdprompt</a></p><h1 id="thank-you-1ha4oy8xt"><strong><span style="color:rgb(230, 73, 128)">Thank you</span></strong></h1> |
|
|
|
## Trigger words |
|
You should use `m0rf3` to trigger the image generation. |
|
|
|
|
|
## Download model |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/Keltezaa/morpheus-laurence-fishburne-matrix-flux/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 |
|
|
|
device = "cuda" if torch.cuda.is_available() else "cpu" |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device) |
|
pipeline.load_lora_weights('Keltezaa/morpheus-laurence-fishburne-matrix-flux', weight_name='morpheus-flux-m0rf3.safetensors') |
|
image = pipeline('bokeh, portrait photo, m0rf3 Matrix background, m0rf3 wears black leather jacket with tie and glasses').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) |
|
|
|
|