object-detection.torch icon indicating copy to clipboard operation
object-detection.torch copied to clipboard

Results 6 object-detection.torch issues
Sort by recently updated
recently updated
newest added

This PR substitutes https://github.com/fmassa/object-detection.torch/pull/5. - Unified Fast-RCNN with the other frameworks (RCNN and SPP). - Tested Fast-RCNN and RCNN, both works as in the original implementations. Should test SPP again...

I read the paper 'CRAFTING A MULTI-TASK CNN FOR VIEWPOINT ESTIMATION' and find this pository which is used for object detection,and I saw the result of examples. So I want...

How to fine tune your model? I don't have sufficient data to retrain your model from scratch.I want to fine tune your model on my data which has only two...

Hi I just downloaded the `refactoring2` branch and tried to install `objdet-scm-1.rockspec` ``` luarocks install objdet-scm-1.rockspec Using objdet-scm-1.rockspec... switching to 'build' mode Cloning into 'object-detection.torch'... remote: Counting objects: 21, done....

`th main.lua -algo RCNN -backend cudnn` gives me the following error on the refactoring branch: ``` nn.CrossEntropyCriterion ==> Converting model to CUDA /home/ubuntu/torch/install/bin/luajit: /home/ubuntu/object-detection.torch/data.lua:28: attempt to index field 'algo' (a...

Implements fast-rcnn detection framework. This PR includes - a simple and efficient lua implementation for `ROIPooling` based on `SpatialAdaptiveMaxPooling` - train and test code - an image-centric `BatchProvider` Some code...