Upload folder using huggingface_hub
Browse files- 31779364.jpeg +0 -0
- 31779370.jpeg +0 -0
- 31779400.jpeg +0 -0
- 31779421.jpeg +0 -0
- Drew_Barrymore_Flux.safetensors +3 -0
- README.md +80 -0
31779364.jpeg
ADDED
31779370.jpeg
ADDED
31779400.jpeg
ADDED
31779421.jpeg
ADDED
Drew_Barrymore_Flux.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be5b5f77d0fccb35fa3d73de12aaae7855a2b2cee5a04fa4c12c2cac14a6c824
|
3 |
+
size 19305352
|
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 |
+
- photorealistic
|
13 |
+
- sexy
|
14 |
+
- woman
|
15 |
+
- actress
|
16 |
+
- celebrity
|
17 |
+
- girls
|
18 |
+
- realistic
|
19 |
+
|
20 |
+
base_model: black-forest-labs/FLUX.1-dev
|
21 |
+
instance_prompt:
|
22 |
+
widget:
|
23 |
+
- text: ' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.'
|
24 |
+
|
25 |
+
output:
|
26 |
+
url: >-
|
27 |
+
31779364.jpeg
|
28 |
+
- text: ' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.'
|
29 |
+
|
30 |
+
output:
|
31 |
+
url: >-
|
32 |
+
31779400.jpeg
|
33 |
+
- text: ' The image is a photograph of a woman with a fair complexion and short wavy golden blonde hair cascading down to her shoulders. Her hair appears slightly unkempt, delicate nose, in a cafe wearing a dress. Looking at the viewer smiling.'
|
34 |
+
|
35 |
+
output:
|
36 |
+
url: >-
|
37 |
+
31779370.jpeg
|
38 |
+
- text: ' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.'
|
39 |
+
|
40 |
+
output:
|
41 |
+
url: >-
|
42 |
+
31779421.jpeg
|
43 |
+
|
44 |
+
---
|
45 |
+
|
46 |
+
# Drew Barrymore (Flux)
|
47 |
+
|
48 |
+
<Gallery />
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
([CivitAI](https://civitai.com/models/))
|
53 |
+
|
54 |
+
## Model description
|
55 |
+
|
56 |
+
<p>Drew Barrymore - Trained for Flux. Dataset gathered from 1995-2000 images</p>
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
## Download model
|
61 |
+
|
62 |
+
Weights for this model are available in Safetensors format.
|
63 |
+
|
64 |
+
[Download](/Keltezaa/drew-barrymore-flux/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/drew-barrymore-flux', weight_name='Drew_Barrymore_Flux.safetensors')
|
76 |
+
image = pipeline(' beautiful photograph, short wavy golden blonde hair cascading down to her shoulders. she is standing in a cafe wearing a dress. Looking at the viewer smiling.').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 |
+
|