🚀 珍娜·奥尔特加 FLUX模型
本项目基于Stable Diffusion的LoRA模型,用于生成美国女演员珍娜·奥尔特加(Jenna Ortega)不同风格和场景的图像,可通过特定提示词触发图像生成,为图像创作带来更多可能。
🚀 快速开始
下载模型
此模型的权重以Safetensors格式提供。你可以在Files & versions标签中下载。
使用🧨 diffusers库
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]
更多详细信息,包括LoRA的加权、合并和融合,请查看diffusers中加载LoRA的文档。
✨ 主要特性
- 多样化风格:能够生成珍娜·奥尔特加在不同场景和风格下的图像,如复古、户外、节日等。
- 特定触发:使用
jenna_ortega
作为触发词,可准确生成相关图像。
💻 使用示例
基础用法
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 portrait of jenna_ortega in a dark, vintage setting. She holds a book titled ''Love is a LIE'' with a black and white image of jenna_ortega''s face on the cover.The woman wears a white collar and a black jacket. Her hair is styled in two braids. She looks directly at the camera with a serious expression. Behind her is a wooden wall with intricate carvings and a framed portrait depicting the frankenstein monster. The color palette consists of dark browns, blacks, and whites, creating a somber and reflective atmosphere.').images[0]
高级用法
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]
📚 详细文档
模型描述
珍娜·玛丽·奥尔特加(Jenna Marie Ortega)是一位美国女演员,她因在Netflix恐怖喜剧系列《星期三》(Wednesday)中饰演星期三·亚当斯(Wednesday Addams)而声名鹊起。她还出演了恐怖电影《惊声尖叫》(Scream)、《X》和《惊声尖叫6》,以及奇幻电影《甲壳虫汁2》(Beetlejuice Beetlejuice)。
触发词
你应该使用jenna_ortega
来触发图像生成。
📄 许可证
本模型使用定制LoRA训练许可证。
属性 |
详情 |
模型类型 |
基于Stable Diffusion的LoRA模型 |
基础模型 |
black-forest-labs/FLUX.1-dev |
触发词 |
jenna_ortega |
许可证 |
bespoke-lora-trained-license |
许可证链接 |
定制LoRA训练许可证 |