prithivMLmods commited on
Commit
8e0853d
·
verified ·
1 Parent(s): 8481d7e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -22,6 +22,49 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  ## Trigger words
26
 
27
  You should use `better pixel` to trigger the image generation.
 
22
 
23
  <Gallery />
24
 
25
+ # Model description for Pixelo-Flux
26
+
27
+ Image Processing Parameters
28
+
29
+ | Parameter | Value | Parameter | Value |
30
+ |---------------------------|--------|---------------------------|--------|
31
+ | LR Scheduler | constant | Noise Offset | 0.03 |
32
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
33
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
34
+ | Network Alpha | 32 | Repeat & Steps | 20 & 2600 |
35
+ | Epoch | 14 | Save Every N Epochs | 1 |
36
+
37
+ Labeling: florence2-en(natural language & English)
38
+
39
+ Total Images Used for Training : 24
40
+
41
+ ## Best Dimensions & Inference
42
+
43
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
44
+ |-----------------|------------------|---------------------------|
45
+ | 1280 x 832 | 3:2 | Best |
46
+ | 1024 x 1024 | 1:1 | Default |
47
+
48
+ ### Inference Range
49
+
50
+ - **Recommended Inference Steps:** 30–35
51
+
52
+ ## Setting Up
53
+ ```python
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 = "strangerzonehf/Pixelo-Flux"
61
+ trigger_word = "better pixel"
62
+ pipe.load_lora_weights(lora_repo)
63
+
64
+ device = torch.device("cuda")
65
+ pipe.to(device)
66
+ ```
67
+
68
  ## Trigger words
69
 
70
  You should use `better pixel` to trigger the image generation.