prithivMLmods
commited on
Commit
•
1508796
1
Parent(s):
e03b808
Update README.md
Browse files
README.md
CHANGED
@@ -5,9 +5,15 @@ tags:
|
|
5 |
- diffusers
|
6 |
- template:diffusion-lora
|
7 |
widget:
|
8 |
-
- text: '
|
9 |
output:
|
10 |
-
url: images/
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
base_model: black-forest-labs/FLUX.1-dev
|
12 |
instance_prompt: Lime Green
|
13 |
license: creativeml-openrail-m
|
@@ -16,6 +22,50 @@ license: creativeml-openrail-m
|
|
16 |
|
17 |
<Gallery />
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
## Trigger words
|
21 |
|
|
|
5 |
- diffusers
|
6 |
- template:diffusion-lora
|
7 |
widget:
|
8 |
+
- text: 'Lime Green, An abstract painting of a hamburger on a green background. The hamburger is composed of a large red bun, with a thick layer of cheese between the bun and two slices of tomatoes. The tomatoes are red, and the lettuce is a vibrant green. The bun has a layer of white crumbs on top of it. There is a black base on the bottom of the hamburger.'
|
9 |
output:
|
10 |
+
url: images/LM1.png
|
11 |
+
- text: 'Lime Green, An eye-level painting of a gray and white cat with green eyes. The cats ears are sticking up, and the cats nose is pointed towards the left side of the frame. Its whiskers are white, and there are splashes of black on the cat. The background of the painting is a vibrant lime green, with black splashes all around the cat, adding a pop of color to the scene.'
|
12 |
+
output:
|
13 |
+
url: images/LM2.png
|
14 |
+
- text: 'Lime Green, An eye-level painting of a womans face, painted in a vibrant shade of green and red. Her lips are painted a deep red, and her eyes are closed. Her eyebrows are a darker shade of black, while her lips are a lighter shade of red. She is wearing a black baseball cap, and she is holding a phone in her right hand. Her hair is pulled back in a ponytail, adding a pop of color to her face. The background is a lime green, and there are a few lines of paint splattered across the image, adding depth to the composition.'
|
15 |
+
output:
|
16 |
+
url: images/LM3.png
|
17 |
base_model: black-forest-labs/FLUX.1-dev
|
18 |
instance_prompt: Lime Green
|
19 |
license: creativeml-openrail-m
|
|
|
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/Lime-Green-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 | 20 & 1800|
|
41 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
42 |
+
|
43 |
+
Labeling: florence2-en(natural language & English)
|
44 |
+
|
45 |
+
Total Images Used for Training : 13 [ Hi-RES ]
|
46 |
+
|
47 |
+
## Best Dimensions
|
48 |
+
|
49 |
+
- 1024 x 1024 (Default)
|
50 |
+
|
51 |
+
## Setting Up
|
52 |
+
```
|
53 |
+
import torch
|
54 |
+
from pipelines import DiffusionPipeline
|
55 |
+
|
56 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
57 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
58 |
+
|
59 |
+
lora_repo = "prithivMLmods/Lime-Green-Flux-LoRA"
|
60 |
+
trigger_word = "Lime Green"
|
61 |
+
pipe.load_lora_weights(lora_repo)
|
62 |
+
|
63 |
+
device = torch.device("cuda")
|
64 |
+
pipe.to(device)
|
65 |
+
```
|
66 |
+
## Data source
|
67 |
+
|
68 |
+
- https://freeflo.ai/
|
69 |
|
70 |
## Trigger words
|
71 |
|