prithivMLmods
commited on
Commit
•
0331fb4
1
Parent(s):
4c65944
Update README.md
Browse files
README.md
CHANGED
@@ -27,16 +27,55 @@ base_model: black-forest-labs/FLUX.1-dev
|
|
27 |
instance_prompt: NFT Art 99
|
28 |
license: creativeml-openrail-m
|
29 |
---
|
30 |
-
|
31 |
|
32 |
<Gallery />
|
33 |
|
|
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
## Trigger words
|
36 |
|
37 |
You should use `NFT Art 99` to trigger the image generation.
|
38 |
|
39 |
-
|
40 |
## Download model
|
41 |
|
42 |
Weights for this model are available in Safetensors format.
|
|
|
27 |
instance_prompt: NFT Art 99
|
28 |
license: creativeml-openrail-m
|
29 |
---
|
30 |
+
![sdvgsdfvsd.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/XQuRMpCE9Wb1-Fe7ZdoqH.png)
|
31 |
|
32 |
<Gallery />
|
33 |
|
34 |
+
# Model description for Flux-NFT-Art99-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 | 17 & 2890 |
|
44 |
+
| Epoch | 15 | Save Every N Epochs | 1 |
|
45 |
+
Labeling: florence2-en(natural language & English)
|
46 |
+
|
47 |
+
Total Images Used for Training : 17 [ Hi RES]
|
48 |
+
|
49 |
+
## Best Dimensions & Inference
|
50 |
+
|
51 |
+
| **Dimensions** | **Aspect Ratio** | **Recommendation** |
|
52 |
+
|-----------------|------------------|---------------------------|
|
53 |
+
| 1280 x 832 | 3:2 | Best |
|
54 |
+
| 1024 x 1024 | 1:1 | Default |
|
55 |
+
|
56 |
+
### Inference Range
|
57 |
+
|
58 |
+
- **Recommended Inference Steps:** 30–35
|
59 |
+
|
60 |
+
## Setting Up
|
61 |
+
```python
|
62 |
+
import torch
|
63 |
+
from pipelines import DiffusionPipeline
|
64 |
+
|
65 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
66 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
67 |
+
|
68 |
+
lora_repo = "strangerzonehf/Flux-NFT-Art99-LoRA"
|
69 |
+
trigger_word = "NFT Art 99"
|
70 |
+
pipe.load_lora_weights(lora_repo)
|
71 |
+
|
72 |
+
device = torch.device("cuda")
|
73 |
+
pipe.to(device)
|
74 |
+
```
|
75 |
## Trigger words
|
76 |
|
77 |
You should use `NFT Art 99` to trigger the image generation.
|
78 |
|
|
|
79 |
## Download model
|
80 |
|
81 |
Weights for this model are available in Safetensors format.
|