Upload folder using huggingface_hub
Browse files- 37336316.jpeg +0 -0
- 37336317.jpeg +0 -0
- 37338049.jpeg +0 -0
- 37338056.jpeg +0 -0
- README.md +80 -0
- kate.safetensors +3 -0
37336316.jpeg
ADDED
![]() |
37336317.jpeg
ADDED
![]() |
37338049.jpeg
ADDED
![]() |
37338056.jpeg
ADDED
![]() |
README.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- lingerie
|
13 |
+
- model
|
14 |
+
- woman
|
15 |
+
- celebrity
|
16 |
+
- fasion
|
17 |
+
- soria
|
18 |
+
- katerina
|
19 |
+
|
20 |
+
base_model: black-forest-labs/FLUX.1-dev
|
21 |
+
instance_prompt:
|
22 |
+
widget:
|
23 |
+
- text: 'smile'
|
24 |
+
|
25 |
+
output:
|
26 |
+
url: >-
|
27 |
+
37336316.jpeg
|
28 |
+
- text: 'full-length photo, Portrait of a woman, soft diffused lighting, teal blue background, warm color palette, shallow depth of field, medium close-up composition, studio photography, high-resolution detail, soft skin texture, delicate white lace garment, wispy flyaway hair strands, professional beauty photography, 85mm lens, soft glamour lighting. Inspiration: Ryan McGinley, Guy Aroch. Avantgarde, bold, intriguing, artsy.'
|
29 |
+
|
30 |
+
output:
|
31 |
+
url: >-
|
32 |
+
37338056.jpeg
|
33 |
+
- text: ' '
|
34 |
+
|
35 |
+
output:
|
36 |
+
url: >-
|
37 |
+
37336317.jpeg
|
38 |
+
- text: 'full-length photo, Portrait of a woman , soft diffused lighting, teal blue background, warm color palette, shallow depth of field, medium close-up composition, studio photography, high-resolution detail, soft skin texture, delicate white lace garment, elegant pose with hand near face, wispy flyaway hair strands, professional beauty photography, 85mm lens, soft glamour lighting. Inspiration: Ryan McGinley, Guy Aroch. Avantgarde, bold, intriguing, artsy.'
|
39 |
+
|
40 |
+
output:
|
41 |
+
url: >-
|
42 |
+
37338049.jpeg
|
43 |
+
|
44 |
+
---
|
45 |
+
|
46 |
+
# kate
|
47 |
+
|
48 |
+
<Gallery />
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
([CivitAI](https://civitai.com/models/))
|
53 |
+
|
54 |
+
## Model description
|
55 |
+
|
56 |
+
<p><span style="color:#868e96">Katerina Soria - a hosiery and lingerie oriented glamourous model, social media influencer and a photographer creating most of my photoshootings by myself. Born in Kyiv (Ukraine), currently living in Vienna (Austria)/Bratislava(Slovakia).</span></p>
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
## Download model
|
61 |
+
|
62 |
+
Weights for this model are available in Safetensors format.
|
63 |
+
|
64 |
+
[Download](/Keltezaa/kate/tree/main) them in the Files & versions tab.
|
65 |
+
|
66 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
67 |
+
|
68 |
+
```py
|
69 |
+
from diffusers import AutoPipelineForText2Image
|
70 |
+
import torch
|
71 |
+
|
72 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
73 |
+
|
74 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
|
75 |
+
pipeline.load_lora_weights('Keltezaa/kate', weight_name='kate.safetensors')
|
76 |
+
image = pipeline('full-length photo, Portrait of a woman , soft diffused lighting, teal blue background, warm color palette, shallow depth of field, medium close-up composition, studio photography, high-resolution detail, soft skin texture, delicate white lace garment, elegant pose with hand near face, wispy flyaway hair strands, professional beauty photography, 85mm lens, soft glamour lighting. Inspiration: Ryan McGinley, Guy Aroch. Avantgarde, bold, intriguing, artsy.').images[0]
|
77 |
+
```
|
78 |
+
|
79 |
+
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)
|
80 |
+
|
kate.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ad70c95a6f876210455c2a5a4653dcd85970c626396836dae79aaf67e1f1fad
|
3 |
+
size 19258808
|