prithivMLmods commited on
Commit
326cb87
1 Parent(s): fc4f92a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md CHANGED
@@ -25,6 +25,50 @@ license: creativeml-openrail-m
25
 
26
  <Gallery />
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  ## Trigger words
30
 
 
25
 
26
  <Gallery />
27
 
28
+ - Hosted Here🧨: https://huggingface.co/spaces/prithivMLmods/FLUX-LoRA-DLC
29
+
30
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
31
+
32
+ ## Model description
33
+
34
+ **prithivMLmods/Red-Undersea-Flux-LoRA**
35
+
36
+ Image Processing Parameters
37
+
38
+ | Parameter | Value | Parameter | Value |
39
+ |---------------------------|--------|---------------------------|--------|
40
+ | LR Scheduler | constant | Noise Offset | 0.03 |
41
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
42
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
43
+ | Network Alpha | 32 | Repeat & Steps | 23 & 2600|
44
+ | Epoch | 12 | Save Every N Epochs | 1 |
45
+
46
+ Labeling: florence2-en(natural language & English)
47
+
48
+ Total Images Used for Training : 13 [ Hi-RES ]
49
+
50
+ ## Best Dimensions
51
+
52
+ - 1024 x 1024 (Default)
53
+
54
+ ## Setting Up
55
+ ```
56
+ import torch
57
+ from pipelines import DiffusionPipeline
58
+
59
+ base_model = "black-forest-labs/FLUX.1-dev"
60
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
61
+
62
+ lora_repo = "prithivMLmods/Red-Undersea-Flux-LoRA"
63
+ trigger_word = "Red Undersea"
64
+ pipe.load_lora_weights(lora_repo)
65
+
66
+ device = torch.device("cuda")
67
+ pipe.to(device)
68
+ ```
69
+ ## Data source
70
+
71
+ - https://freeflo.ai/
72
 
73
  ## Trigger words
74