LIU, Zichen

Results 1 comments of LIU, Zichen

[Documents](https://internvl.readthedocs.io/en/latest/get_started/chat_data_format.html) 有说,grounding的output是相对坐标。 ``` def normalize_coordinates(box, image_width, image_height): x1, y1, x2, y2 = box normalized_box = [ round((x1 / image_width) * 1000), round((y1 / image_height) * 1000), round((x2 / image_width) *...