• Stars
    star
    392
  • Rank 109,043 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 7 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

TorchCV: a PyTorch vision library mimics ChainerCV

TorchCV: a PyTorch vision library mimics ChainerCV

Detection

Model Original Paper ChainerCV TorchCV*
SSD300@voc07_test 74.3% 77.8% 76.68%
SSD512@voc07_test 76.8% 79.2% 78.89%
FPNSSD512@voc07_test - - 81.46%

The accuracy of TorchCV SSD is ~1% lower than ChainerCV. This is because the VGG base model I use performs slightly worse.
I did the experiment by replacing pytorch/vision VGG16 model with the model used in ChainerCV, the SSD512 model got 79.85% accuracy.

FPNSSD512 is created by replacing SSD VGG16 network with FPN50, the rest is the same. It beats all SSD models.
You can download the trained params here.

Update

[2018-2-6] Our FPNSSD512 model achieved the 1st place on the PASCAL VOC 2012 dataset.

image Check the leaderboard.

[2018-2-26] As issue(#11) mentioned I shouldn't use VOC07 data for training. I submit another result that is only trained on VOC12 data. The older submission is already marked to private.

image

[2018-3-29] As Alibaba Turing Lab submit a result of 74.8% MAP, which takes the first place on Comp3, I decided to train a deeper model (replace FPN50 with FPN152, trained only with VOC12 data).
It got MAP of 77%, which is far more higher than I expected.
Check the new leaderboard. The older submission is marked to private.

TODO

  • SSD300
  • SSD512
  • FPNSSD512
  • RetinaNet
  • Faster R-CNN
  • Mask R-CNN

More Repositories

1

pytorch-cifar

95.47% on CIFAR10 with PyTorch
Python
5,687
star
2

pytorch-retinanet

RetinaNet in PyTorch
Python
989
star
3

pytorch-fpn

Feature Pyramid Networks in PyTorch
Python
462
star
4

pytorch-ssd

Single Shot MultiBox Detector in PyTorch [deprecated]
Python
109
star
5

pytorch-groupnorm

Group Normalization in PyTorch
Python
108
star
6

pytorch-training-template

PyTorch model training template
Python
22
star
7

pytorch-agender

Predict age & gender in one model
Python
19
star
8

pytorch-yolov2

Train yolov2 with PyTorch [deprecated]
Python
15
star
9

pycaffe-mtcnn

MTCNN with pycaffe
Python
14
star
10

pytorch-metrics

Accuracy, precision, recall, confusion matrix computation with batch updates
Python
13
star
11

mocha

Convert torch model to/from caffe model easily
Python
12
star
12

pytorch-cpn

Cascaded Pyramid Network(CPN) in PyTorch
Python
12
star
13

transformer

Simple transformer model for CIFAR10
Python
9
star
14

pytorch-roipooling

PyTorch roipooling with torchvision
Python
8
star
15

kitti-utils

KITTI coordinate transition & visualization tool
Python
7
star
16

mobox

mobox: A toolbox for Motion Prediction
Python
7
star
17

graph_seg

A matlab implementation of the algorithm described in the paper Efficient Graph-Based Image Segmentation.
MATLAB
7
star
18

TorchBox

PyTorch training toolbox.
Python
5
star
19

kalman_filter_cpp

Kalman Filter in C++
C++
4
star
20

transforms

Image & bbox transforms
Python
3
star
21

tic-tac-toe

Simple RL example of game Tic-tac-toe
Python
3
star
22

kalman_filter

Linear Kalman Filter
Python
2
star
23

GMM

Gaussian Mixture Model via EM
MATLAB
2
star
24

yabai-config

My Yabai Skhd config for Mac
Shell
2
star
25

AlgorithmsSedgewick-master

Java
2
star
26

FER2

FER2
MATLAB
2
star
27

LRUCache

Example usage of LRU cache
C++
1
star
28

lazy.nvim

My lazy.nvim config
Lua
1
star
29

cmake-example

CMake example
CMake
1
star
30

xlandmark

Facial landmark regression with xtorch
Lua
1
star
31

fonts

My fonts
1
star
32

torch-cifar

Train cifar10 model with torch
Lua
1
star
33

dwm

My dwm config
C
1
star
34

easy21

RL course assignment: Easy21
Python
1
star
35

vimrc

My VIM config
Vim Script
1
star
36

libtorch-example

Simple libtorch example
Python
1
star
37

FDDB

Python
1
star
38

xtorch

Torch extension for easy model training & test
Lua
1
star
39

lstm

Simple LSTM example
Python
1
star
40

dgl

DGL examples
Python
1
star