prithivMLmods commited on
Commit
50f6ddd
·
verified ·
1 Parent(s): 31b12c9

Update README.md

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