ShuaiBai623 commited on
Commit
cadac78
·
verified ·
1 Parent(s): 434824e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -2
README.md CHANGED
@@ -58,10 +58,10 @@ This is the weight repository for Qwen3-VL-8B-Instruct.
58
 
59
  **Multimodal performance**
60
 
61
- ![](https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3-VL/table_nothinking_vl-8b.jpg)
62
 
63
  **Pure text performance**
64
- ![](https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3-VL/table_nothinking_text-8b.jpg)
65
 
66
  ## Quickstart
67
 
@@ -128,6 +128,28 @@ output_text = processor.batch_decode(
128
  print(output_text)
129
  ```
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
 
133
  ## Citation
 
58
 
59
  **Multimodal performance**
60
 
61
+ ![](https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3-VL/qwen3vl_4b_8b_vl_instruct.jpg)
62
 
63
  **Pure text performance**
64
+ ![](https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3-VL/qwen3vl_4b_8b_text_instruct.jpg)
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