Skip to content

Commit 97649fc

Browse files
authored
chore: add project template and update document (#15)
Signed-off-by: scepter914 <[email protected]>
1 parent 59d8ba3 commit 97649fc

File tree

5 files changed

+69
-20
lines changed

5 files changed

+69
-20
lines changed

README.md

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,45 +20,40 @@ This repository is ML library for Autoware.
2020
### Tools
2121

2222
- 3D
23-
- [x] Train code
24-
- [ ] Evaluation code
2523
- [ ] Make mp4 files for visualization
2624
- [ ] Make mcap files for visualization
2725
- 2D
28-
- [ ] Train code
29-
- [ ] Evaluation code
3026
- [ ] Make mp4 files for visualization
3127
- [ ] Make mcap files for visualization
3228

3329
### 3D Detection model
3430

35-
- [BEVFusion (Camera-LiDAR fusion)](projects/BEVFusion)
36-
- TransFusion (LiDAR only)
31+
- [BEVFusion-CL (BEVFusion Camera-LiDAR fusion)](projects/BEVFusion)
32+
- TransFusion-L (TransFusion LiDAR only)
3733
- CenterPoint (LiDAR only)
3834
- PointPainted-CenterPoint (Camera-LiDAR fusion)
3935

40-
| | Onnx deploy | T4dataset | NuScenes | aimotive |
41-
| -------------- | :---------: | :-------: | :------: | :------: |
42-
| BEVFusion-CL | | | | |
43-
| TransFusion-L | | | | |
44-
| CenterPoint | | | | |
45-
| PP-CenterPoint | | | | |
36+
| | T4dataset | NuScenes | aimotive |
37+
| -------------- | :-------: | :------: | :------: |
38+
| BEVFusion-CL | | | |
39+
| TransFusion-L | | | |
40+
| CenterPoint | | | |
41+
| PP-CenterPoint | | | |
4642

4743
### 2D Detection
4844

4945
- YOLOX-opt
5046
- TwinTransformer
5147

52-
| | Onnx deploy | T4dataset | NuImages | COCO |
53-
| --------------- | :---------: | :-------: | :------: | :---: |
54-
| YOLOX-opt | | | | |
55-
| TwinTransformer | | | | |
48+
| | T4dataset | NuImages | COCO |
49+
| --------------- | :-------: | :------: | :---: |
50+
| YOLOX-opt | | | |
51+
| TwinTransformer | | | |
5652

5753
### 2D classification
5854

5955
- EfficientNet
6056

61-
| | Onnx deploy | T4dataset | NuImages | COCO |
62-
| ------------ | :---------: | :-------: | :------: | :---: |
63-
| EfficientNet | | | | |
64-
57+
| | T4dataset | NuImages | COCO |
58+
| ------------ | :-------: | :------: | :---: |
59+
| EfficientNet | | | |

docs/release_note.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## For next release
2+
3+
- Add BEVFusion model (#1, #2, #12)
4+
- Update docs (#3, #4, #5, #6, #7, #8, #10, #11, #13)
5+
- Add dataset converter (#9)
6+
- Add train code for 2D (#14)
7+
8+
## v0.1.0
9+
10+
TBD

projects/BEVFusion/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Supported feature
2+
3+
- [x] Train LiDAR-only model
4+
- [ ] Train Camera-LiDAR fusion model
5+
- [x] Train with single GPU
6+
- [ ] Train with multi GPU
7+
- [ ] Make .onnx file and deploy to Autoware
8+
- [ ] Unit test
9+
110
## Usage
211
### Setup
312

projects/template/README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## Supported feature
2+
3+
- [ ] Train LiDAR-only model
4+
- [ ] Train Camera-LiDAR fusion model
5+
- [ ] Train with single GPU
6+
- [ ] Train with multi GPU
7+
- [ ] Make .onnx file and deploy to Autoware
8+
- [ ] Unit test
9+
10+
## Usage
11+
### Setup
12+
13+
TBD
14+
15+
### Train
16+
17+
TBD
18+
19+
### Deploy
20+
21+
TBD
22+
23+
## Results and models
24+
### NuScenes
25+
26+
TBD
27+
28+
### T4 dataset
29+
30+
TBD
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_base_ = [
2+
'../../../../configs/fcos3d/fcos3d_r101-caffe-dcn_fpn_head-gn_8xb2-1x_nus-mono3d.py' # noqa
3+
]
4+
custom_imports = dict(imports=['projects.example_project.dummy'])
5+
_base_.model.backbone.type = 'DummyResNet'

0 commit comments

Comments
 (0)