prithivMLmods commited on
Commit
457a52a
·
verified ·
1 Parent(s): 8852f0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -1
README.md CHANGED
@@ -46,11 +46,50 @@ instance_prompt: 3DXLP1
46
  license: creativeml-openrail-m
47
  ---
48
  ![Flux-3DXL-Partfile-0001](images/1x.png)
49
- # Flux-3DXL-Partfile-0001
50
 
51
  <Gallery />
52
 
 
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  ## Trigger words
55
 
56
  You should use `3DXLP1` to trigger the image generation.
 
46
  license: creativeml-openrail-m
47
  ---
48
  ![Flux-3DXL-Partfile-0001](images/1x.png)
 
49
 
50
  <Gallery />
51
 
52
+ ## Model description for 3DXL Partfile 0001
53
 
54
+ Image Processing Parameters
55
+
56
+ | Parameter | Value | Parameter | Value |
57
+ |---------------------------|--------|---------------------------|--------|
58
+ | LR Scheduler | constant | Noise Offset | 0.03 |
59
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
60
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
61
+ | Network Alpha | 32 | Repeat & Steps | 25 & 3100 |
62
+ | Epoch | 20 | Save Every N Epochs | 1 |
63
+
64
+ Labeling: florence2-en(natural language & English)
65
+
66
+ Total Images Used for Training : 27
67
+
68
+ ## Best Dimensions & Inference
69
+
70
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
71
+ |-----------------|------------------|---------------------------|
72
+ | 1280 x 832 | 3:2 | Best |
73
+ | 1024 x 1024 | 1:1 | Default |
74
+
75
+ ### Inference Range
76
+ - **Recommended Inference Steps:** 30–35
77
+ -
78
+ ## Setting Up
79
+ ```python
80
+ import torch
81
+ from pipelines import DiffusionPipeline
82
+
83
+ base_model = "black-forest-labs/FLUX.1-dev"
84
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
85
+
86
+ lora_repo = "strangerzonehf/Flux-3DXL-Partfile-0001"
87
+ trigger_word = "3DXLP1"
88
+ pipe.load_lora_weights(lora_repo)
89
+
90
+ device = torch.device("cuda")
91
+ pipe.to(device)
92
+ ```
93
  ## Trigger words
94
 
95
  You should use `3DXLP1` to trigger the image generation.