CoolFace
Modelpublic

Keltezaa/jenna-ortega-flux

sourceHugging Faceotherupdated 2y agoView on Hugging Face
12likes118downloads
Model Card

Jenna Ortega FLUX

<Gallery />

(CivitAI)

Model description

<p>Jenna Marie Ortega is an American actress who rose to prominence for her portrayal of Wednesday Addams in the Netflix horror comedy series 'Wednesday'. She has also starred in the slasher films 'Scream', 'X', and 'Scream VI', as well as in the fantasy film 'Beetlejuice Beetlejuice'..</p>

Trigger words

You should use jenna_ortega to trigger the image generation.

Download model

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.

Use it with the 🧨 diffusers library

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/jenna-ortega-flux', weight_name='JennaOrtega_F1D.safetensors')
image = pipeline('A detailed portrayal of jenna_ortega warrior in ornate silver and gold armor, standing in a grand, gothic-style cathedral. She holds a long, ornate sword with a golden hilt and a red gem at the top. Her attire is intricately designed with gold and silver patterns and embellishments, including a prominent chest plate featuring a blue gem. Her hair is styled in loose waves, and she has a determined expression. The background is blurred, highlighting the warrior as the main subject, and the cathedral's architecture is visible behind her. The color palette is dominated by gold, silver, and white, creating a regal and majestic atmosphere.').images[0]

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers