Upload folder using huggingface_hub
Browse files- README.md +56 -0
- inkfigure.safetensors +3 -0
- inkfigure_000000200.safetensors +3 -0
- inkfigure_000000400.safetensors +3 -0
- inkfigure_000000600.safetensors +3 -0
- inkfigure_000000800.safetensors +3 -0
- samples/1726625428413__000000000_0.jpg +0 -0
- samples/1726625446501__000000000_1.jpg +0 -0
- samples/1726625464649__000000000_2.jpg +0 -0
- samples/1726625482803__000000000_3.jpg +0 -0
- samples/1726626444042__000000250_0.jpg +0 -0
- samples/1726626462506__000000250_1.jpg +0 -0
- samples/1726626480967__000000250_2.jpg +0 -0
- samples/1726626499425__000000250_3.jpg +0 -0
- samples/1726627456623__000000500_0.jpg +0 -0
- samples/1726627475125__000000500_1.jpg +0 -0
- samples/1726627493630__000000500_2.jpg +0 -0
- samples/1726627512113__000000500_3.jpg +0 -0
- samples/1726628466681__000000750_0.jpg +0 -0
- samples/1726628485170__000000750_1.jpg +0 -0
- samples/1726628503654__000000750_2.jpg +0 -0
- samples/1726628522135__000000750_3.jpg +0 -0
- samples/1726629479798__000001000_0.jpg +0 -0
- samples/1726629498224__000001000_1.jpg +0 -0
- samples/1726629516650__000001000_2.jpg +0 -0
- samples/1726629535079__000001000_3.jpg +0 -0
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- flux
|
| 5 |
+
- lora
|
| 6 |
+
- diffusers
|
| 7 |
+
- template:sd-lora
|
| 8 |
+
- ai-toolkit
|
| 9 |
+
widget:
|
| 10 |
+
- text: A church in a field on a sunny day, [trigger] style.
|
| 11 |
+
output:
|
| 12 |
+
url: samples/1726629479798__000001000_0.jpg
|
| 13 |
+
- text: A seal plays with a ball on the beach, [trigger] style.
|
| 14 |
+
output:
|
| 15 |
+
url: samples/1726629498224__000001000_1.jpg
|
| 16 |
+
- text: A clown at the circus rides on a zebra, [trigger] style.
|
| 17 |
+
output:
|
| 18 |
+
url: samples/1726629516650__000001000_2.jpg
|
| 19 |
+
- text: '[trigger]'
|
| 20 |
+
output:
|
| 21 |
+
url: samples/1726629535079__000001000_3.jpg
|
| 22 |
+
base_model: black-forest-labs/FLUX.1-dev
|
| 23 |
+
instance_prompt: INKFIGURE
|
| 24 |
+
license: other
|
| 25 |
+
license_name: flux-1-dev-non-commercial-license
|
| 26 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
| 27 |
+
---
|
| 28 |
+
|
| 29 |
+
# inkfigure
|
| 30 |
+
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
|
| 31 |
+
<Gallery />
|
| 32 |
+
|
| 33 |
+
## Trigger words
|
| 34 |
+
|
| 35 |
+
You should use `INKFIGURE` to trigger the image generation.
|
| 36 |
+
|
| 37 |
+
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
|
| 38 |
+
|
| 39 |
+
Weights for this model are available in Safetensors format.
|
| 40 |
+
|
| 41 |
+
[Download](/uwcc/inkfigure/tree/main) them in the Files & versions tab.
|
| 42 |
+
|
| 43 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 44 |
+
|
| 45 |
+
```py
|
| 46 |
+
from diffusers import AutoPipelineForText2Image
|
| 47 |
+
import torch
|
| 48 |
+
|
| 49 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
| 50 |
+
pipeline.load_lora_weights('uwcc/inkfigure', weight_name='inkfigure')
|
| 51 |
+
image = pipeline('A church in a field on a sunny day, [trigger] style.').images[0]
|
| 52 |
+
image.save("my_image.png")
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
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)
|
| 56 |
+
|
inkfigure.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a3e4a8a61d92a9ff32584cc953aadf0fb1c5884b36002ef7b87935d6408a3ed
|
| 3 |
+
size 171969400
|
inkfigure_000000200.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17c40bc41001762d2ca84d68f78049e0b153f8b83f44ee346d00aec75c3ef22a
|
| 3 |
+
size 171969400
|
inkfigure_000000400.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03758f8fdb73089a6b11db2df92141cf73876dbdfc1bf5eb901fe75efe8ac6b2
|
| 3 |
+
size 171969400
|
inkfigure_000000600.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7a0f46e8f300c092ec48f8acb184c5423be28155cb0a711cb4c5161d3daa9ea
|
| 3 |
+
size 171969400
|
inkfigure_000000800.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:280f6ff457607a8b463b76f497338f7136cd1b2c29663f21d6315aaa8bb9752f
|
| 3 |
+
size 171969400
|
samples/1726625428413__000000000_0.jpg
ADDED
|
samples/1726625446501__000000000_1.jpg
ADDED
|
samples/1726625464649__000000000_2.jpg
ADDED
|
samples/1726625482803__000000000_3.jpg
ADDED
|
samples/1726626444042__000000250_0.jpg
ADDED
|
samples/1726626462506__000000250_1.jpg
ADDED
|
samples/1726626480967__000000250_2.jpg
ADDED
|
samples/1726626499425__000000250_3.jpg
ADDED
|
samples/1726627456623__000000500_0.jpg
ADDED
|
samples/1726627475125__000000500_1.jpg
ADDED
|
samples/1726627493630__000000500_2.jpg
ADDED
|
samples/1726627512113__000000500_3.jpg
ADDED
|
samples/1726628466681__000000750_0.jpg
ADDED
|
samples/1726628485170__000000750_1.jpg
ADDED
|
samples/1726628503654__000000750_2.jpg
ADDED
|
samples/1726628522135__000000750_3.jpg
ADDED
|
samples/1726629479798__000001000_0.jpg
ADDED
|
samples/1726629498224__000001000_1.jpg
ADDED
|
samples/1726629516650__000001000_2.jpg
ADDED
|
samples/1726629535079__000001000_3.jpg
ADDED
|