prithivMLmods commited on
Commit
83f9864
1 Parent(s): 0e87a7f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -22,6 +22,51 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Trigger words
27
 
 
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/Glowing-Body-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 & 3.1K|
41
+ | Epoch | 15 | Save Every N Epochs | 1 |
42
+
43
+ Labeling: florence2-en(natural language & English)
44
+
45
+ Total Images Used for Training : 22 [ 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/Glowing-Body-Flux-LoRA"
60
+ trigger_word = "Glowing Body"
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
 
71
  ## Trigger words
72