prithivMLmods commited on
Commit
e43d161
·
verified ·
1 Parent(s): 9cf71eb

Update README.md

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