There're some cool properties of VCOCO dataset you implemented:
"object_to_action" gives me the list of actions for each object, i.e. {1: [0, 3, 11, 15], 2: [0, 1, 2, 3, 11], ......}
"objects" return the list of objects, i.e. ['background', 'person', 'bicycle', .......]
"actions" return the list of actions, i.e. ['hold obj', 'sit instr', 'ride instr', .......]
However, I'm confused about the relationships among them:
- Which object does the key
1 of "1: [0, 3, 11, 15]", which is the first item of object_to_action, represent?
- Which action does the values
[0, 3, 11, 15] of "1: [0, 3, 11, 15]" represent?
According to the List of actions and objects, Actions 0, 3, 11, 15 represent hold obj, look obj, carry obj, cut obj respectively while Object 1 represent person, which appears to be weird.
There're some cool properties of VCOCO dataset you implemented:
"
object_to_action" gives me the list of actions for each object, i.e.{1: [0, 3, 11, 15], 2: [0, 1, 2, 3, 11], ......}"
objects" return the list of objects, i.e.['background', 'person', 'bicycle', .......]"
actions" return the list of actions, i.e.['hold obj', 'sit instr', 'ride instr', .......]However, I'm confused about the relationships among them:
1of "1: [0, 3, 11, 15]", which is the first item of object_to_action, represent?[0, 3, 11, 15]of "1: [0, 3, 11, 15]" represent?According to the List of actions and objects,
Actions 0, 3, 11, 15representhold obj, look obj, carry obj, cut objrespectively whileObject 1representperson, which appears to be weird.