• Stars
    star
    125
  • Rank 284,665 (Top 6 %)
  • Language
    Python
  • Created about 4 years ago
  • Updated almost 3 years ago

Reviews

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

Repository Details

A resnet18 version of CenterNet(objects as points)

Update

Recently, I publish a better CenterNet, called CenterNet-plus. Although my CenterNet-plus has a very simple piepline with any DCN layers, it surpasses the official CenterNet.

You can get my CenterNet-plus from the following project:

https://github.com/yjh0410/CenterNet-plus

CenterNet

A PyTorch version of CenterNet(objects as points). I only support resnet18 version. No DLA or Hourglass version.

I have trained it on VOC0712 and COCO 2017. You can download them from BaiDuYunDisk:

Link:https://pan.baidu.com/s/170OYftGRVW-j5qAKYyHSQQ

Password:jz4q

The official CenterNet takes advantage of DCN while I just replace it with SPP used in YOLOv3 as I'm a little lazy ~

On VOC:

data mAP
(official) resnet18 + DCN VOC2007 75.7
(Our) resnet18 + SPP VOC2007 75.6

On COCO:

data AP AP50
(official) resnet18 + DCN COCO val 28 44.9
(Our) resnet18 + SPP COCO val 25.8 45.4

I'm still trying something new to make my CenterNet-Lite stronger.

Installation

  • Pytorch-gpu 1.1.0/1.2.0/1.3.0
  • Tensorboard 1.14.
  • opencv-python, python3.6/3.7

Dataset

VOC Dataset

I copy the download files from the following excellent project: https://github.com/amdegroot/ssd.pytorch

I have uploaded the VOC2007 and VOC2012 to BaiDuYunDisk, so for researchers in China, you can download them from BaiDuYunDisk:

Link:https://pan.baidu.com/s/1tYPGCYGyC0wjpC97H-zzMQ

Password:4la9

You will get a VOCdevkit.zip, then what you need to do is just to unzip it and put it into data/. After that, the whole path to VOC dataset is data/VOCdevkit/VOC2007 and data/VOCdevkit/VOC2012.

Download VOC2007 trainval & test

# specify a directory for dataset to be downloaded into, else default is ~/data/
sh data/scripts/VOC2007.sh # <directory>

Download VOC2012 trainval

# specify a directory for dataset to be downloaded into, else default is ~/data/
sh data/scripts/VOC2012.sh # <directory>

MSCOCO Dataset

I copy the download files from the following excellent project: https://github.com/DeNA/PyTorch_YOLOv3

Download MSCOCO 2017 dataset

Just run sh data/scripts/COCO2017.sh. You will get COCO train2017, val2017, test2017.

Train

VOC

python train.py --cuda -d voc

You can run python train.py -h to check all optional argument.

COCO

python train.py --cuda -d coco

Test

VOC

python test.py --cuda -d voc --trained_model [ Please input the path to model dir. ]

COCO

python test.py --cuda -d coco-val --trained_model [ Please input the path to model dir. ]

Evaluation

VOC

python eval.py --cuda -d voc --train_model [ Please input the path to model dir. ]

COCO

To run on COCO_val:

python eval.py --cuda -d coco-val --train_model [ Please input the path to model dir. ]

To run on COCO_test-dev(You must be sure that you have downloaded test2017):

python eval.py --cuda -d coco-test --train_model [ Please input the path to model dir. ]

You will get a .json file which can be evaluated on COCO test server.

More Repositories

1

new-YOLOv1_PyTorch

Python
261
star
2

yolov2-yolov3_PyTorch

Python
221
star
3

YOWOv2

The second generation of YOWO action detector.
Python
181
star
4

PyTorch_YOLO-Family

Python
158
star
5

PyTorch_YOLOv1

A new version of YOLOv1
Python
144
star
6

RT-ODLab

YOLO Tutorial
Python
124
star
7

PyTorch_YOWO

Python
91
star
8

FreeYOLO

Python
90
star
9

CenterNet-plus

A Simple Baseline for Object Detection
Python
55
star
10

FCOS-RT_PyTorch

A real-time version of FCOS, inspired by FCOSv2.
Python
48
star
11

PyTorch_YOLOF

A PyTorch version of You Only Look at One-level Feature object detector
Python
35
star
12

YOLAF

You Only Look At Face
Python
35
star
13

PyTorch_DCNv2

A simple version of Deformable Convolution Network V2
Python
32
star
14

YOLO-Nano

A new version YOLO-Nano
Python
29
star
15

YOWOF

You Only Watch One Frame for Online Spatio-Temporal Action Detection
Python
26
star
16

PyTorch_YOLOv2

Python
26
star
17

pytorch-imagenet

Python
23
star
18

DetLAB

Python
20
star
19

image_classification_pytorch

Python
15
star
20

PyTorch_YOLOv3

Python
14
star
21

YOLOX-Backbone

The backbone CSPDarkNet of YOLOX.
Python
12
star
22

DeTR-Lite

A simple version of DeTR
Python
11
star
23

AVA_Dataset

download AVA dataset
Shell
11
star
24

YOLO-Tutorial-v2

Python
11
star
25

DeTR-LAB

Library of Detection with Transformer
Python
10
star
26

NeuralNetwork

Python
10
star
27

ViT-Lite

A Lite version of VisTransformer
Python
10
star
28

SAMI

Masked AutoEncoders leveraging Segment-Anything
Python
9
star
29

YOLOF-Lite

A pytorch version of YOLOF
Python
8
star
30

OurDetection

这是一个指导初学者如何在自己的训练集上进行训练的项目
Python
8
star
31

ODLab

General Object Detection
Python
8
star
32

ODLab-World

Python
7
star
33

MAE

PyTorch implementation of Masked AutoEncoder
Python
7
star
34

FreeYOLOv2

Python
5
star
35

PyTorch_YOLOv4

Python
5
star
36

DiscreteCosineTransformation

A numpy & pytorch deployment of 2D DiscreteCosineTransformation (DCT)
Python
4
star
37

CIFAR_PyTorch

This is a very prime deep learning project.
Python
4
star
38

PyTorch_AnchorYOLO

Python
3
star
39

FreeTrack

Python
3
star
40

CSPDarkNet53

CSPDarkNet53
Python
3
star
41

Vision-Pretraining-Tutorial

Python
3
star
42

PyTorch_FCOS

A PyTorch version of RetinaNet
Python
2
star
43

KonFaceDetection

I love HTT!
Python
2
star
44

Combine-and-Conquer-Detection

Python
2
star
45

ThunderNet-Backbone

Attention, I just supply the backbone of thundernet, not the whole pipeline of thundernet.
Python
2
star
46

OpenVINO-Python-FreeYOLO

Python
2
star
47

OpenVINO-CPP-FreeYOLO

C++
1
star
48

ONNX-FreeYOLO

Python
1
star
49

E2E_FCOS

End-to-End Fully Convolutional One-Stage Object Detector
Python
1
star
50

SAM_demo

Python
1
star