Upload folder using huggingface_hub
Browse files- 53481728.jpeg +0 -0
- 53481729.jpeg +0 -0
- 53481742.jpeg +0 -0
- 53481844.jpeg +0 -0
- 53481861.jpeg +0 -0
- README.md +79 -0
- Snegh-000001.safetensors +3 -0
53481728.jpeg
ADDED
![]() |
53481729.jpeg
ADDED
![]() |
53481742.jpeg
ADDED
![]() |
53481844.jpeg
ADDED
![]() |
53481861.jpeg
ADDED
![]() |
README.md
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=True
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- character
|
13 |
+
|
14 |
+
base_model: black-forest-labs/FLUX.1-dev
|
15 |
+
instance_prompt:
|
16 |
+
widget:
|
17 |
+
- text: ' '
|
18 |
+
|
19 |
+
output:
|
20 |
+
url: >-
|
21 |
+
53481844.jpeg
|
22 |
+
- text: ' '
|
23 |
+
|
24 |
+
output:
|
25 |
+
url: >-
|
26 |
+
53481861.jpeg
|
27 |
+
- 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'
|
28 |
+
|
29 |
+
output:
|
30 |
+
url: >-
|
31 |
+
53481742.jpeg
|
32 |
+
- 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'
|
33 |
+
|
34 |
+
output:
|
35 |
+
url: >-
|
36 |
+
53481729.jpeg
|
37 |
+
- 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'
|
38 |
+
|
39 |
+
output:
|
40 |
+
url: >-
|
41 |
+
53481728.jpeg
|
42 |
+
|
43 |
+
---
|
44 |
+
|
45 |
+
# Snegh@
|
46 |
+
|
47 |
+
<Gallery />
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
## Model description
|
54 |
+
|
55 |
+
<p>Just a beautiful girl</p>
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
## Download model
|
60 |
+
|
61 |
+
Weights for this model are available in Safetensors format.
|
62 |
+
|
63 |
+
[Download](/Keltezaa/snegh/tree/main) them in the Files & versions tab.
|
64 |
+
|
65 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
66 |
+
|
67 |
+
```py
|
68 |
+
from diffusers import AutoPipelineForText2Image
|
69 |
+
import torch
|
70 |
+
|
71 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
72 |
+
|
73 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
|
74 |
+
pipeline.load_lora_weights('Keltezaa/snegh', weight_name='Snegh-000001.safetensors')
|
75 |
+
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]
|
76 |
+
```
|
77 |
+
|
78 |
+
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)
|
79 |
+
|
Snegh-000001.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8c505966173e574a9f52c62af08c40568220829aad0a720b946ce8c50fab2c5
|
3 |
+
size 19299104
|