robert-downey-jr / README.md
Keltezaa's picture
Upload folder using huggingface_hub
9c077c6 verified
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- celebrity
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: ROBERT DOWNEY JR
widget:
- text: ' '
output:
url: >-
32233493.jpeg
- text: ' '
output:
url: >-
32233496.jpeg
- text: ' '
output:
url: >-
32233494.jpeg
- text: ' '
output:
url: >-
32233497.jpeg
- text: ' '
output:
url: >-
32233495.jpeg
- text: ' '
output:
url: >-
32233500.jpeg
- text: ' '
output:
url: >-
32233498.jpeg
- text: ' '
output:
url: >-
32233499.jpeg
- text: ' '
output:
url: >-
32233501.jpeg
- text: ' '
output:
url: >-
32233503.jpeg
- text: ' '
output:
url: >-
32233505.jpeg
- text: ' '
output:
url: >-
32233504.jpeg
---
# ROBERT DOWNEY JR
<Gallery />
## Model description
<p>Robert Downey Jr. is an acclaimed American actor known for his versatility and charismatic performances. He began his acting career at a young age, featuring in films like <em>Less Than Zero</em> (1987) and <em>Chaplin</em> (1992), for which he received an Academy Award nomination for Best Actor. However, his career faced challenges in the late 1990s and early 2000s due to struggles with substance abuse.</p><p>After overcoming these difficulties, Downey Jr. made a remarkable comeback. He gained widespread fame and critical acclaim as Tony Stark/Iron Man in the Marvel Cinematic Universe (MCU), starting with <em>Iron Man</em> (2008). His portrayal of the character became iconic, solidifying his place in Hollywood. He has also starred in other successful films, including <em>Sherlock Holmes</em> (2009) and its sequel, earning Golden Globe Awards for his performances. Today, Robert Downey Jr. is regarded as one of the most talented and successful actors in the film industry.</p>
## Trigger words
You should use `ROBERT DOWNEY JR` to trigger the image generation.
## Download model
Weights for this model are available in Safetensors format.
[Download](/Keltezaa/robert-downey-jr/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/robert-downey-jr', weight_name='ROBERT DOWNEY JR.safetensors')
image = pipeline('`ROBERT DOWNEY JR`').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)