Update README.md
Browse files
README.md
CHANGED
@@ -135,10 +135,13 @@ messages = format_openai_template(description, base64_image)
|
|
135 |
completion = await client.chat.completions.create(
|
136 |
model=args.model_path,
|
137 |
messages=messages,
|
138 |
-
temperature=0 #
|
|
|
|
|
139 |
)
|
140 |
|
141 |
-
# The output will be in the range of [0,
|
|
|
142 |
|
143 |
```
|
144 |
|
|
|
135 |
completion = await client.chat.completions.create(
|
136 |
model=args.model_path,
|
137 |
messages=messages,
|
138 |
+
temperature=0 # REMEMBER to set temperature to ZERO!
|
139 |
+
# REMEMBER to set temperature to ZERO!
|
140 |
+
# REMEMBER to set temperature to ZERO!
|
141 |
)
|
142 |
|
143 |
+
# The output will be in the range of [0,1000), which is compatible with the original Qwen2-VL
|
144 |
+
# So the actual coordinates should be (x/1000*width, y/1000*height)
|
145 |
|
146 |
```
|
147 |
|