Update README.md
Browse files
README.md
CHANGED
|
@@ -31,6 +31,48 @@ license: creativeml-openrail-m
|
|
| 31 |
|
| 32 |
<Gallery />
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
## Trigger words
|
| 35 |
|
| 36 |
You should use `Automotive X1` to trigger the image generation.
|
|
|
|
| 31 |
|
| 32 |
<Gallery />
|
| 33 |
|
| 34 |
+
# Model description for Flux-Automotive-X1-LoRA
|
| 35 |
+
|
| 36 |
+
Image Processing Parameters
|
| 37 |
+
|
| 38 |
+
| Parameter | Value | Parameter | Value |
|
| 39 |
+
|---------------------------|--------|---------------------------|--------|
|
| 40 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
| 41 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
| 42 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
| 43 |
+
| Network Alpha | 32 | Repeat & Steps | 25 & 2900 |
|
| 44 |
+
| Epoch | 15 | Save Every N Epochs | 1 |
|
| 45 |
+
|
| 46 |
+
Labeling: florence2-en(natural language & English)
|
| 47 |
+
|
| 48 |
+
Total Images Used for Training : 20
|
| 49 |
+
|
| 50 |
+
## Best Dimensions & Inference
|
| 51 |
+
|
| 52 |
+
| **Dimensions** | **Aspect Ratio** | **Recommendation** |
|
| 53 |
+
|-----------------|------------------|---------------------------|
|
| 54 |
+
| 1280 x 832 | 3:2 | Best |
|
| 55 |
+
| 1024 x 1024 | 1:1 | Default |
|
| 56 |
+
|
| 57 |
+
### Inference Range
|
| 58 |
+
|
| 59 |
+
- **Recommended Inference Steps:** 30–35
|
| 60 |
+
|
| 61 |
+
## Setting Up
|
| 62 |
+
```python
|
| 63 |
+
import torch
|
| 64 |
+
from pipelines import DiffusionPipeline
|
| 65 |
+
|
| 66 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
| 67 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
| 68 |
+
|
| 69 |
+
lora_repo = "strangerzonehf/Flux-Automotive-X1-LoRA"
|
| 70 |
+
trigger_word = "Automotive X1"
|
| 71 |
+
pipe.load_lora_weights(lora_repo)
|
| 72 |
+
|
| 73 |
+
device = torch.device("cuda")
|
| 74 |
+
pipe.to(device)
|
| 75 |
+
```
|
| 76 |
## Trigger words
|
| 77 |
|
| 78 |
You should use `Automotive X1` to trigger the image generation.
|