GriffinLiang / vrd-dsr

Code for Visual Relationship Detection with Deep Structural Ranking (AAAI2018)
121 stars 32 forks source link

Comments for different data file formats #5

Open yangshao opened 6 years ago

yangshao commented 6 years ago

I try to run this model on my own data, is there any data format description or script generating the data format include(.mat, .pkl etc.)

GriffinLiang commented 6 years ago

I added some description of the data format in README.md.

yangshao commented 6 years ago

Thanks, can you give more details on what are the differences between test.pkl and proposal.pkl?

yangshao commented 6 years ago

and If proposal.pkl is generated using faster rcnn, how do you decide the number of bbox in the test samples?

GriffinLiang commented 6 years ago

The provided proposal.pkl is the object detection results of the original paper (ECCV2016). For your own detector, you can use the topN bboxes with the highest score.

yangshao commented 6 years ago

Hi, I have more questions:

  1. what's the representation of bbox: (x1, y1, x2, y2) or (x1, y1, width, height)?
  2. how to use word embedding or what's the format of the file: 'params_emb.pkl'
  3. what's the meaning of the option "use_obj=True" and "use_so=True"?

Thanks.