prithivMLmods
commited on
Commit
•
dd33e77
1
Parent(s):
d7d80b8
Update README.md
Browse files
README.md
CHANGED
@@ -22,12 +22,59 @@ license: creativeml-openrail-m
|
|
22 |
|
23 |
<Gallery />
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
## Trigger words
|
27 |
|
28 |
You should use `Golden Dust` to trigger the image generation.
|
29 |
|
30 |
-
|
31 |
## Download model
|
32 |
|
33 |
Weights for this model are available in Safetensors format.
|
|
|
22 |
|
23 |
<Gallery />
|
24 |
|
25 |
+
- Hosted Here🧨: https://huggingface.co/spaces/prithivMLmods/FLUX-LoRA-DLC
|
26 |
+
|
27 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
28 |
+
|
29 |
+
## Model description
|
30 |
+
|
31 |
+
**prithivMLmods/Golden-Dust-Flux-LoRA**
|
32 |
+
|
33 |
+
Image Processing Parameters
|
34 |
+
|
35 |
+
| Parameter | Value | Parameter | Value |
|
36 |
+
|---------------------------|--------|---------------------------|--------|
|
37 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
38 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
39 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
40 |
+
| Network Alpha | 32 | Repeat & Steps | 25 & 2500|
|
41 |
+
| Epoch | 15 | Save Every N Epochs | 1 |
|
42 |
+
|
43 |
+
Labeling: florence2-en(natural language & English)
|
44 |
+
|
45 |
+
Total Images Used for Training : 17 [ Hi-RES ]
|
46 |
+
|
47 |
+
## Other Sample Image
|
48 |
+
|
49 |
+
![prithivMLmods/Golden-Dust-Flux-LoRA](images/GD4.png))
|
50 |
+
|
51 |
+
## Best Dimensions
|
52 |
+
|
53 |
+
- 1024 x 1024 (Default)
|
54 |
+
|
55 |
+
## Setting Up
|
56 |
+
```
|
57 |
+
import torch
|
58 |
+
from pipelines import DiffusionPipeline
|
59 |
+
|
60 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
61 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
62 |
+
|
63 |
+
lora_repo = "prithivMLmods/Golden-Dust-Flux-LoRA"
|
64 |
+
trigger_word = "Golden Dust"
|
65 |
+
pipe.load_lora_weights(lora_repo)
|
66 |
+
|
67 |
+
device = torch.device("cuda")
|
68 |
+
pipe.to(device)
|
69 |
+
```
|
70 |
+
## Data source
|
71 |
+
|
72 |
+
- https://freeflo.ai/
|
73 |
|
74 |
## Trigger words
|
75 |
|
76 |
You should use `Golden Dust` to trigger the image generation.
|
77 |
|
|
|
78 |
## Download model
|
79 |
|
80 |
Weights for this model are available in Safetensors format.
|