facebookresearch / multipathnet

A Torch implementation of the object detection network from "A MultiPath Network for Object Detection" (https://arxiv.org/abs/1604.02135)
Other
1.34k stars 275 forks source link

How to generate proposals t7 files? #17

Open tanakka opened 8 years ago

tanakka commented 8 years ago

How can I generate train.t7 and val.t7 from deepmask output? deepmask/evalPerImage.lua generates multiple JSON|t7 files. (divided into chunks of 500 images each)

samson-wang commented 8 years ago

@tanakka FYI #16 I post a piece of code in the reply.

veejai commented 7 years ago

I know pre-computed proposals are given in the torch format since the file is huge and hard to create it at our end, but is there a straightforward approach to create these files when your dataset is small. Like @tanakka asked, whats the next step in converting those split json or t7 files into train.t7 or val.t7, is there a code snippet to make this process easier? Thanks in advance.