BoyuNLP commited on
Commit
83022f9
·
verified ·
1 Parent(s): 7552b24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -2
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 # Remember to set temperature to ZERO!
 
 
139
  )
140
 
141
- # The output will be in the range of [0,999), which is compatible with the original Qwen2-VL
 
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