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