You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+44-23
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,17 @@
1
-
# SECOND-V1.5 for KITTI object detection
2
-
SECOND-V1.5 detector.
1
+
# SECOND for KITTI/NuScenes object detection
2
+
SECOND detector.
3
3
4
4
ONLY support python 3.6+, pytorch 1.0.0+. Tested in Ubuntu 16.04/18.04/Windows 10.
5
5
6
6
## News
7
7
8
-
2019-3-21: SECOND V1.5.1 (minor improvement and bug fix) released! See [release notes](RELEASE.md) for more details.
8
+
2019-4-1: SECOND V1.6.0alpha released: New Data API, [NuScenes](https://www.nuscenes.org) support, [PointPillars](https://github.com/nutonomy/second.pytorch) support.
9
9
10
-
2019-1-20: SECOND V1.5 released! See [release notes](RELEASE.md) for more details.
10
+
2019-3-21: SECOND V1.5.1 (minor improvement and bug fix) released!
11
11
12
+
2019-1-20: SECOND V1.5 released! Sparse convolution-based network.
13
+
14
+
See [release notes](RELEASE.md) for more details.
12
15
13
16
### Performance in KITTI validation set (50/50 split)
Follow instructions in [spconv](https://github.com/traveller59/spconv) to install spconv.
70
73
74
+
If you want to use NuScenes dataset, you need to install [nuscenes-devkit](https://github.com/nutonomy/nuscenes-devkit), I recommend to copy nuscenes in python-sdk to second/.. folder (equalivent to add it to PYTHONPATH) and manually install its dependencies, use pip to install devkit will install many fixed-version library.
75
+
71
76
### 3. Setup cuda for numba
72
77
73
78
you need to add following environment variable for numba.cuda, you can add them to ~/.bashrc:
1. New dataset API (unstable during alpha), almost completely remove kitti-specific code. you can add your custom dataset by following steps:
5
+
(1): implement all Dataset API functions
6
+
(2): use web visualization tool to check whether the box is correct.
7
+
(3): add your dataset to all_dataset.py, change the dataset_class_name in config file.
4
8
5
-
1. New sparse convolution based models. VFE-based old models are deprecated. Now the model looks like this:
6
-
points([N, 4])->voxels([N, 5, 4])->Features([N, 4])->Sparse Convolution Networks->RPN. See [this](https://github.com/traveller59/second.pytorch/blob/master/second/pytorch/models/middle.py) for more details of sparse conv networks.
7
-
2. The [SparseConvNet](https://github.com/facebookresearch/SparseConvNet) is deprecated. New library [spconv](https://github.com/traveller59/spconv) is introduced.
8
-
3. Super converge (from fastai) is implemented. Now all network can converge to a good result with only 50~80 epoch. For example. ```car.fhd.config``` only needs 50 epochs to reach 78.3 AP (car mod 3d).
9
-
4. Target assigner now works correctly when using multi-class.
9
+
2. Add [NuScenes](https://www.nuscenes.org) dataset support (incomplete in 1.6.0alpha), I plan to reproduce the NDS score in their paper.
10
+
11
+
3. Add [pointpillars](https://github.com/nutonomy/second.pytorch) to this repo.
12
+
13
+
4. Full Tensorboard support.
14
+
15
+
## Minor Improvements and Bug fixes
16
+
17
+
1. Move all data-specific functions to their corresponding dataset file.
18
+
19
+
2. Improved config file structure, remove some unused item.
2. Better RPN, you can add custom block by inherit RPNBase and implement _make_layer method.
20
32
3. Update pretrained model.
21
33
4. Add a simple inference notebook. everyone should start this project by that notebook.
22
-
5. Add windows support. Training on windows is slow than linux.
34
+
5. Add windows support. Training on windows is slow than linux.
35
+
36
+
# Release 1.5
37
+
38
+
## Major Features and Improvements
39
+
40
+
1. New sparse convolution based models. VFE-based old models are deprecated. Now the model looks like this:
41
+
points([N, 4])->voxels([N, 5, 4])->Features([N, 4])->Sparse Convolution Networks->RPN. See [this](https://github.com/traveller59/second.pytorch/blob/master/second/pytorch/models/middle.py) for more details of sparse conv networks.
42
+
2. The [SparseConvNet](https://github.com/facebookresearch/SparseConvNet) is deprecated. New library [spconv](https://github.com/traveller59/spconv) is introduced.
43
+
3. Super converge (from fastai) is implemented. Now all network can converge to a good result with only 50~80 epoch. For example. ```car.fhd.config``` only needs 50 epochs to reach 78.3 AP (car mod 3d).
44
+
4. Target assigner now works correctly when using multi-class.
0 commit comments