prithivMLmods commited on
Commit
c26f441
1 Parent(s): f191831

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -22,12 +22,55 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Trigger words
27
 
28
  You should use `Electric Blue` to trigger the image generation.
29
 
30
-
31
  ## Download model
32
 
33
  Weights for this model are available in Safetensors format.
 
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/Electric-Blue-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 & 2.23K|
41
+ | Epoch | 13 | Save Every N Epochs | 1 |
42
+
43
+ Labeling: florence2-en(natural language & English)
44
+
45
+ Total Images Used for Training : 17 [ 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/Electric-Blue-Flux-LoRA"
60
+ trigger_word = "Electric Blue"
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
 
72
  You should use `Electric Blue` to trigger the image generation.
73
 
 
74
  ## Download model
75
 
76
  Weights for this model are available in Safetensors format.