Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:(ansible) update model download logic #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions edge_auto_jetson_launch/launch/tensorrt_yolox.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<!-- output topic name to be published (bbox) -->
<arg name="output/objects" default="/perception/object_recognition/detection/rois0" />
<!-- path to the YOLOX model to be loaded -->
<arg name="model_path" default="$(find-pkg-share tensorrt_yolox)/data/yolox-tiny.onnx" />
<arg name="model_path" default="/opt/autoware/data/tensorrt_yolox/yolox-tiny.onnx" />
<!-- path to the label file to explain category ID and string -->
<arg name="label_path" default="$(find-pkg-share tensorrt_yolox)/data/label.txt" />
<arg name="label_path" default="/opt/autoware/data/tensorrt_yolox/label.txt" />
<!-- container naem that this ROS node to be loaded -->

Check warning on line 10 in edge_auto_jetson_launch/launch/tensorrt_yolox.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (naem)
<arg name="container_name" default="" />
<!-- flag to use ROS2 intra process -->

Check warning on line 12 in edge_auto_jetson_launch/launch/tensorrt_yolox.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ROS2)
<arg name="use_intra_process" default="True" />

<!-- algorithm parameters -->
Expand Down
Loading