forked from prl-mushr/mushr_rhc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34bb470
commit 5e864b9
Showing
5 changed files
with
1,030 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<launch> | ||
<arg name="tg" default="dispersion" /> | ||
<arg name="map_server" default="1" /> | ||
<arg name="car_name" default="car" /> | ||
|
||
<arg name="out_path" default="/home/rb/hackathon_data/e2e_eval/model_test" /> | ||
<arg name="model_path" default="/home/rb/hackathon_data/aml_outputs/log_output/normal-kingfish/GPTiros_e2e_8gpu_2022-02-17_1645120431.7528405_2022-02-17_1645120431.7528613/model/epoch10.pth.tar" /> | ||
|
||
<group if="$(arg map_server)"> | ||
<include file="$(find mushr_rhc_ros)/launch/map_server.launch" /> | ||
</group> | ||
|
||
<group ns="$(arg car_name)"> | ||
<node pkg="mushr_rhc_ros" type="rhcnode_network_iros.py" name="rhcontroller" output="screen"> | ||
<env name="RHC_USE_CUDA" value="0" /> | ||
|
||
<param name="out_path" value="$(arg out_path)" /> | ||
<param name="model_path" value="$(arg model_path)" /> | ||
|
||
<param name="inferred_pose_t" value="car_pose" /> | ||
|
||
<param name="car_name" value="$(arg car_name)" /> | ||
|
||
<rosparam file="$(find mushr_rhc_ros)/launch/params/trajgen/$(arg tg).yaml" /> | ||
<rosparam file="$(find mushr_rhc_ros)/launch/params/all_params.yaml" /> | ||
<rosparam file="$(find mushr_rhc_ros)/launch/sim/params.yaml" /> | ||
</node> | ||
</group> | ||
|
||
</launch> |
Oops, something went wrong.