prithivMLmods commited on
Commit
d63661d
1 Parent(s): 86bdea5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -21,7 +21,52 @@ license: creativeml-openrail-m
21
  # Flux.1-Dev-Quote-LoRA
22
 
23
  <Gallery />
 
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Trigger words
27
 
 
21
  # Flux.1-Dev-Quote-LoRA
22
 
23
  <Gallery />
24
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
25
 
26
+ ## Model description
27
+
28
+ **prithivMLmods/Flux.1-Dev-Stamp-Art-LoRA**
29
+
30
+ Image Processing Parameters
31
+
32
+ | Parameter | Value | Parameter | Value |
33
+ |---------------------------|--------|---------------------------|--------|
34
+ | LR Scheduler | constant | Noise Offset | 0.03 |
35
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
36
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
37
+ | Network Alpha | 32 | Repeat & Steps | 19 & 1850|
38
+ | Epoch | 10 | Save Every N Epochs | 1 |
39
+
40
+ Labeling: florence2-en(natural language & English)
41
+
42
+ Total Images Used for Training : 24
43
+
44
+ ## Best Dimensions
45
+
46
+ - 1024 x 1024 (Default)
47
+
48
+ ## Setting Up
49
+ ```python
50
+ import torch
51
+ from pipelines import DiffusionPipeline
52
+
53
+ base_model = "black-forest-labs/FLUX.1-dev"
54
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
55
+
56
+ lora_repo = "prithivMLmods/Flux.1-Dev-Stamp-Art-LoRA"
57
+ trigger_word = "stam9"
58
+ pipe.load_lora_weights(lora_repo)
59
+
60
+ device = torch.device("cuda")
61
+ pipe.to(device)
62
+ ```
63
+ ## Data source
64
+
65
+ - https://playground.com/
66
+
67
+ ## Other Demo Prompt
68
+
69
+ quoter, a brown rectangular sticker is placed against a stark white backdrop. The sticker reads "Art is Therapy." In black text, the word "art" is written in a bold font. The text is centered in the middle of the sticker, with a white border around the edges.
70
 
71
  ## Trigger words
72