prithivMLmods commited on
Commit
e5c58bf
·
verified ·
1 Parent(s): b671985

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -1
README.md CHANGED
@@ -23,11 +23,52 @@ license: apache-2.0
23
  <Gallery />
24
 
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## Trigger words
27
 
28
  You should use `Inkk` to trigger the image generation.
29
 
30
-
31
  ## Download model
32
 
33
  Weights for this model are available in Safetensors format.
 
23
  <Gallery />
24
 
25
 
26
+ # Model description for Inkk
27
+
28
+ Image Processing Parameters
29
+
30
+ | Parameter | Value | Parameter | Value |
31
+ |---------------------------|--------|---------------------------|--------|
32
+ | LR Scheduler | constant | Noise Offset | 0.03 |
33
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
34
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
35
+ | Network Alpha | 32 | Repeat & Steps | 19 & 2770 |
36
+ | Epoch | 23 | Save Every N Epochs | 1 |
37
+
38
+ Labeling: florence2-en(natural language & English)
39
+
40
+ Total Images Used for Training : 55
41
+
42
+ ## Best Dimensions & Inference
43
+
44
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
45
+ |-----------------|------------------|---------------------------|
46
+ | 1280 x 832 | 3:2 | Best |
47
+ | 1024 x 1024 | 1:1 | Default |
48
+
49
+ ### Inference Range
50
+
51
+ - **Recommended Inference Steps:** 30–35
52
+
53
+ ## Setting Up
54
+ ```python
55
+ import torch
56
+ from pipelines import DiffusionPipeline
57
+
58
+ base_model = "black-forest-labs/FLUX.1-dev"
59
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
60
+
61
+ lora_repo = "strangerzonehf/Inkk"
62
+ trigger_word = "Inkk"
63
+ pipe.load_lora_weights(lora_repo)
64
+
65
+ device = torch.device("cuda")
66
+ pipe.to(device)
67
+ ```
68
  ## Trigger words
69
 
70
  You should use `Inkk` to trigger the image generation.
71
 
 
72
  ## Download model
73
 
74
  Weights for this model are available in Safetensors format.