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