brushpenbob
commited on
Commit
•
e1baeba
1
Parent(s):
3525399
Upload folder using huggingface_hub
Browse files- 26193927.jpeg +0 -0
- 26193935.jpeg +0 -0
- 26193936.jpeg +0 -0
- Flux_Pencil_v2_r1.safetensors +3 -0
- README.md +72 -0
26193927.jpeg
ADDED
26193935.jpeg
ADDED
26193936.jpeg
ADDED
Flux_Pencil_v2_r1.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bef835f18561624760b240417df79bf025a1cab077071602ffb61ccb79a55545
|
3 |
+
size 19272528
|
README.md
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=False&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- pencil
|
13 |
+
- style
|
14 |
+
- the protoart
|
15 |
+
- flux.1
|
16 |
+
|
17 |
+
base_model: black-forest-labs/FLUX.1-dev
|
18 |
+
instance_prompt: evang style
|
19 |
+
widget:
|
20 |
+
- text: ' '
|
21 |
+
|
22 |
+
output:
|
23 |
+
url: >-
|
24 |
+
26193927.jpeg
|
25 |
+
- text: ' '
|
26 |
+
|
27 |
+
output:
|
28 |
+
url: >-
|
29 |
+
26193935.jpeg
|
30 |
+
- text: ' '
|
31 |
+
|
32 |
+
output:
|
33 |
+
url: >-
|
34 |
+
26193936.jpeg
|
35 |
+
|
36 |
+
---
|
37 |
+
|
38 |
+
# Flux Pencil v2
|
39 |
+
|
40 |
+
<Gallery />
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
## Model description
|
47 |
+
|
48 |
+
<p>remastered for XL model and remake of the previous <a rel="ugc" href="https://civitai.com/models/659793/pencil-flux-v1">flux pencil </a></p><p></p><div data-youtube-video><iframe width="640" height="480" allowfullscreen="true" autoplay="false" disablekbcontrols="false" enableiframeapi="false" endtime="0" ivloadpolicy="0" loop="false" modestbranding="false" origin playlist src="https://www.youtube.com/embed/QynE0UGQhRs" start="0"></iframe></div>
|
49 |
+
|
50 |
+
## Trigger words
|
51 |
+
You should use `evang style` to trigger the image generation.
|
52 |
+
|
53 |
+
|
54 |
+
## Download model
|
55 |
+
|
56 |
+
Weights for this model are available in Safetensors format.
|
57 |
+
|
58 |
+
[Download](/brushpenbob/flux-pencil-v2/tree/main) them in the Files & versions tab.
|
59 |
+
|
60 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
61 |
+
|
62 |
+
```py
|
63 |
+
from diffusers import AutoPipelineForText2Image
|
64 |
+
import torch
|
65 |
+
|
66 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
67 |
+
pipeline.load_lora_weights('brushpenbob/flux-pencil-v2', weight_name='Flux_Pencil_v2_r1.safetensors')
|
68 |
+
image = pipeline('`evang style`').images[0]
|
69 |
+
```
|
70 |
+
|
71 |
+
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)
|
72 |
+
|