Update README.md
Browse files
README.md
CHANGED
|
@@ -58,10 +58,10 @@ This is the weight repository for Qwen3-VL-4B-Instruct.
|
|
| 58 |
|
| 59 |
**Multimodal performance**
|
| 60 |
|
| 61 |
-

|
| 129 |
```
|
| 130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
|
| 132 |
|
| 133 |
## Citation
|
|
|
|
| 58 |
|
| 59 |
**Multimodal performance**
|
| 60 |
|
| 61 |
+

|
| 62 |
|
| 63 |
**Pure text performance**
|
| 64 |
+

|
| 65 |
|
| 66 |
## Quickstart
|
| 67 |
|
|
|
|
| 128 |
print(output_text)
|
| 129 |
```
|
| 130 |
|
| 131 |
+
### Generation Hyperparameters
|
| 132 |
+
#### VL
|
| 133 |
+
```bash
|
| 134 |
+
export greedy='false'
|
| 135 |
+
export top_p=0.8
|
| 136 |
+
export top_k=20
|
| 137 |
+
export temperature=0.7
|
| 138 |
+
export repetition_penalty=1.0
|
| 139 |
+
export presence_penalty=1.5
|
| 140 |
+
export out_seq_length=16384
|
| 141 |
+
```
|
| 142 |
+
|
| 143 |
+
#### Text
|
| 144 |
+
```bash
|
| 145 |
+
export greedy='false'
|
| 146 |
+
export top_p=1.0
|
| 147 |
+
export top_k=40
|
| 148 |
+
export repetition_penalty=1.0
|
| 149 |
+
export presence_penalty=2.0
|
| 150 |
+
export temperature=1.0
|
| 151 |
+
export out_seq_length=32768
|
| 152 |
+
```
|
| 153 |
|
| 154 |
|
| 155 |
## Citation
|