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
Showing
18 changed files
with
2,482 additions
and
18 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
23 changes: 23 additions & 0 deletions
23
mushr_rhc_ros/launch/params/trajgen/dispersion_language.yaml
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,23 @@ | ||
T: 21 | ||
K: 301 | ||
trajgen_name: 'dispersion' | ||
horizon: | ||
distance: 3.5 | ||
time: -1.5 | ||
trajgen: | ||
dispersion: | ||
samples: 9 | ||
desired_speed: 2.5 | ||
min_delta: -0.34 | ||
max_delta: 0.34 | ||
cost_fn: | ||
obs_dist_w: 86.0 | ||
cost2go_w: 0.0 | ||
smoothing_discount_rate: 0.0 | ||
bounds_cost: 1000.0 | ||
direction_penalize_w: 100 | ||
world_rep: | ||
epsilon: 0.65 | ||
debug: | ||
viz_rollouts: | ||
print_stats: False |
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
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> |
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,39 @@ | ||
<launch> | ||
<arg name="tg" default="dispersion_language" /> | ||
<arg name="map_server" default="1" /> | ||
<arg name="car_name" default="car" /> | ||
|
||
<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_record_language.py" name="rhcontroller" output="screen"> | ||
<env name="RHC_USE_CUDA" value="0" /> | ||
|
||
<param name="inferred_pose_t" value="car_pose" /> | ||
<!-- <param name="inferred_pose_t" value="particle_filter/inferred_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" /> | ||
<!-- <rosparam file="$(find mushr_rhc_ros)/launch/viz-paths/params.yaml" /> --> | ||
</node> | ||
|
||
<node pkg="mushr_rhc_ros" type="control_node.py" name="control_node" output="screen" required="true" > | ||
</node> | ||
|
||
<!-- <node pkg="mushr_rhc_ros" type="rhcdebug.py" name="rhcdebug" output="screen"> | ||
<env name="RHC_USE_CUDA" value="0" /> | ||
<param name="inferred_pose_t" value="car_pose" /> | ||
<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/debug/params.yaml" /> | ||
</node> --> | ||
|
||
</group> | ||
</launch> |
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
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
Oops, something went wrong.