End of training
Browse files- 3d-icon-Flux-LoRA_emb.safetensors +3 -0
- README.md +97 -0
- image_0.png +0 -0
- image_1.png +0 -0
- image_2.png +0 -0
- image_3.png +0 -0
3d-icon-Flux-LoRA_emb.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:860d6efa70761fc1feb81781f7429387ecaa5a7c66dd19ff8bcb547ac6a2f056
|
3 |
+
size 6224
|
README.md
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: black-forest-labs/FLUX.1-dev
|
3 |
+
library_name: diffusers
|
4 |
+
license: other
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- diffusers-training
|
8 |
+
- diffusers
|
9 |
+
- lora
|
10 |
+
- flux
|
11 |
+
- flux-diffusers
|
12 |
+
- template:sd-lora
|
13 |
+
instance_prompt: 3d icon in the style of <s0><s1>
|
14 |
+
widget:
|
15 |
+
- text: a <s0><s1> icon of an astronaut riding a horse, in the style of <s0><s1>
|
16 |
+
output:
|
17 |
+
url: image_0.png
|
18 |
+
- text: a <s0><s1> icon of an astronaut riding a horse, in the style of <s0><s1>
|
19 |
+
output:
|
20 |
+
url: image_1.png
|
21 |
+
- text: a <s0><s1> icon of an astronaut riding a horse, in the style of <s0><s1>
|
22 |
+
output:
|
23 |
+
url: image_2.png
|
24 |
+
- text: a <s0><s1> icon of an astronaut riding a horse, in the style of <s0><s1>
|
25 |
+
output:
|
26 |
+
url: image_3.png
|
27 |
+
---
|
28 |
+
|
29 |
+
<!-- This model card has been generated automatically according to the information the training script had access to. You
|
30 |
+
should probably proofread and complete it, then remove this comment. -->
|
31 |
+
|
32 |
+
|
33 |
+
# Flux DreamBooth LoRA - rangwani-harsh/3d-icon-Flux-LoRA
|
34 |
+
|
35 |
+
<Gallery />
|
36 |
+
|
37 |
+
## Model description
|
38 |
+
|
39 |
+
These are rangwani-harsh/3d-icon-Flux-LoRA DreamBooth LoRA weights for black-forest-labs/FLUX.1-dev.
|
40 |
+
|
41 |
+
The weights were trained using [DreamBooth](https://dreambooth.github.io/) with the [Flux diffusers trainer](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/README_flux.md).
|
42 |
+
|
43 |
+
Was LoRA for the text encoder enabled? False.
|
44 |
+
|
45 |
+
Pivotal tuning was enabled: True.
|
46 |
+
|
47 |
+
## Trigger words
|
48 |
+
|
49 |
+
To trigger image generation of trained concept(or concepts) replace each concept identifier in you prompt with the new inserted tokens:
|
50 |
+
|
51 |
+
to trigger concept `TOK` → use `<s0><s1>` in your prompt
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
## Download model
|
56 |
+
|
57 |
+
[Download the *.safetensors LoRA](rangwani-harsh/3d-icon-Flux-LoRA/tree/main) in the Files & versions tab.
|
58 |
+
|
59 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
60 |
+
|
61 |
+
```py
|
62 |
+
from diffusers import AutoPipelineForText2Image
|
63 |
+
import torch
|
64 |
+
from huggingface_hub import hf_hub_download
|
65 |
+
from safetensors.torch import load_file
|
66 |
+
|
67 |
+
pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
|
68 |
+
|
69 |
+
embedding_path = hf_hub_download(repo_id='rangwani-harsh/3d-icon-Flux-LoRA', filename='3d-icon-Flux-LoRA_emb.safetensors', repo_type="model")
|
70 |
+
state_dict = load_file(embedding_path)
|
71 |
+
pipeline.load_textual_inversion(state_dict["clip_l"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder, tokenizer=pipeline.tokenizer)
|
72 |
+
|
73 |
+
image = pipeline('a <s0><s1> icon of an astronaut riding a horse, in the style of <s0><s1>').images[0]
|
74 |
+
```
|
75 |
+
|
76 |
+
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)
|
77 |
+
|
78 |
+
## License
|
79 |
+
|
80 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
|
81 |
+
|
82 |
+
|
83 |
+
## Intended uses & limitations
|
84 |
+
|
85 |
+
#### How to use
|
86 |
+
|
87 |
+
```python
|
88 |
+
# TODO: add an example code snippet for running this diffusion pipeline
|
89 |
+
```
|
90 |
+
|
91 |
+
#### Limitations and bias
|
92 |
+
|
93 |
+
[TODO: provide examples of latent issues and potential remediations]
|
94 |
+
|
95 |
+
## Training details
|
96 |
+
|
97 |
+
[TODO: describe the data used to train the model]
|
image_0.png
ADDED
![]() |
image_1.png
ADDED
![]() |
image_2.png
ADDED
![]() |
image_3.png
ADDED
![]() |