prithivMLmods commited on
Commit
f5de65f
·
verified ·
1 Parent(s): d3940ad

Update README.md

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