|
--- |
|
license: other |
|
license_name: bespoke-lora-trained-license |
|
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=True |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- migrated |
|
- character |
|
|
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: |
|
widget: |
|
- text: 'realistic CGI rendering of a young woman with a striking appearance. She has a fair, ample breasts and a slender waist. Her skin is a porcelain white, wavy platinum blonde hair with pink highlights cascading down her shoulders. Her hair is styled in loose, and she has a petite build with a small to medium-sized bust., ornate hairpins. Her eyes are a striking green, full lips painted in a bold red lipstick. Her facial features are accentuated with dramatic makeup, voluminous eyelashes and heavy, enhanced with dramatic makeup' |
|
|
|
output: |
|
url: >- |
|
53481742.jpeg |
|
- text: 'dark eyeliner and voluminous lashes, athletic build. She is topless, and she has full, and adorned with intricate, dark eyeliner and voluminous eyelashes. Her lips are painted with a deep, dark eyeliner and voluminous eyelashes. Her lips are full and painted a rich, wavy curls with a pop of pastel pink highlights. Her makeup is dramatic, adorned with a delicate' |
|
|
|
output: |
|
url: >- |
|
53481729.jpeg |
|
- text: 'and a matching bracelet., and a subtle blush., elegant updos adorned with delicate, dark eyeliner and voluminous eyelashes. Her lips are painted with a deep, likely created using advanced 3D modeling and rendering techniques. The subject is a young woman with a fair, accentuated with heavy, hyper-realistic digital artwork of a young woman with a striking appearance. She has a light skin tone, styled in loose waves and adorned with delicate' |
|
|
|
output: |
|
url: >- |
|
53481728.jpeg |
|
|
|
--- |
|
|
|
# Snegh@ |
|
|
|
<Gallery /> |
|
|
|
|
|
|
|
|
|
|
|
## Model description |
|
|
|
<p>Just a beautiful girl</p> |
|
|
|
|
|
|
|
## Download model |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/Keltezaa/snegh/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/snegh', weight_name='Snegh-000001.safetensors') |
|
image = pipeline('and a matching bracelet., and a subtle blush., elegant updos adorned with delicate, dark eyeliner and voluminous eyelashes. Her lips are painted with a deep, likely created using advanced 3D modeling and rendering techniques. The subject is a young woman with a fair, accentuated with heavy, hyper-realistic digital artwork of a young woman with a striking appearance. She has a light skin tone, styled in loose waves and adorned with delicate').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) |
|
|
|
|