prithivMLmods commited on
Commit
cd99246
1 Parent(s): e493972

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -25,12 +25,55 @@ license: creativeml-openrail-m
25
 
26
  <Gallery />
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  ## Trigger words
30
 
31
  You should use `Yellow Pop` to trigger the image generation.
32
 
33
-
34
  ## Download model
35
 
36
  Weights for this model are available in Safetensors format.
 
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/Yellow-Pop-Flux-Dev-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 | 22 & 2600|
44
+ | Epoch | 15 | Save Every N Epochs | 1 |
45
+
46
+ Labeling: florence2-en(natural language & English)
47
+
48
+ Total Images Used for Training : 22
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/Yellow-Pop-Flux-Dev-LoRA"
63
+ trigger_word = "Yellow Pop"
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
 
75
  You should use `Yellow Pop` to trigger the image generation.
76
 
 
77
  ## Download model
78
 
79
  Weights for this model are available in Safetensors format.