Skip to content

Commit 4583652

Browse files
committed
fix: modify README.md
Signed-off-by: liu cui <cynthia.liu@autocore.ai>
1 parent eeb670a commit 4583652

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

perception/autoware_tensorrt_bevdet/CMakeLists.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@ project(autoware_tensorrt_bevdet)
33

44
add_compile_options(-std=c++17)
55

6+
find_package(bevdet_vendor)
7+
if(NOT ${bevdet_vendor_FOUND})
8+
message(WARNING "The bevdet_vendor package is not found. Please check its dependencies.")
9+
return()
10+
endif()
11+
612
find_package(autoware_cmake REQUIRED)
713
autoware_package()
8-
find_package(bevdet_vendor REQUIRED)
914
find_package(rclcpp REQUIRED)
1015
find_package(rclcpp_components REQUIRED)
1116
find_package(Eigen3 REQUIRED)

perception/autoware_tensorrt_bevdet/README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,21 @@ The core algorithm, named `BEVDet`, it unifies multi-view images into the perspe
5252

5353
Please refer to open source repository [ros2_dataset_bridge](https://github.com/Owen-Liuyuxuan/ros2_dataset_bridge) to publish the ROS 2 topics for NuScenes dataset.
5454

55-
## Limitation
56-
57-
The model is trained on open-source dataset `NuScenes` and has poor generalization on its own dataset, If you want to use this model to infer your data, you need to retrain it.
58-
5955
## Trained Models
6056

6157
You can download the onnx format of trained models by clicking on the links below.
6258

6359
- BEVDet: [bevdet_one_lt_d.onnx](https://drive.google.com/file/d/1eMGJfdCVlDPBphBTjMcnIh3wdW7Q7WZB/view?usp=sharing)
6460

65-
The model was trained in NuScenes database for 20 epochs.
61+
The `BEVDet` model was trained in `NuScenes` dataset for 20 epochs.
62+
63+
## Limitation
64+
65+
The model is trained on open-source dataset `NuScenes` and has poor generalization on its own dataset, If you want to use this model to infer your data, you need to retrain it.
66+
67+
## Training BEVDet Model
6668

67-
If you want to train model using the [TIER IV's internal database(~2600 key frames)](https://drive.google.com/file/d/1UaarK88HZu09sf7Ix-bEVl9zGNGFwTVL/view?usp=sharing), please refer to the following repositories:[BEVDet adapted to TIER IV dataset](https://github.com/cyn-liu/BEVDet/tree/train_export)
69+
If you want to train model using the [TIER IV's internal database(~2600 key frames)](https://drive.google.com/file/d/1UaarK88HZu09sf7Ix-bEVl9zGNGFwTVL/view?usp=sharing), please refer to the following repositories:[BEVDet adapted to TIER IV dataset](https://github.com/cyn-liu/BEVDet/tree/train_export).
6870

6971
## References/External links
7072

0 commit comments

Comments
 (0)