@@ -117,6 +117,8 @@ def run(
117
117
off_road_weight : Annotated [Optional [float ], typer .Option (help = "The weight for off-road penalty" )] = None ,
118
118
goal_achieved_weight : Annotated [Optional [float ], typer .Option (help = "The weight for goal-achieved reward" )] = None ,
119
119
waypoint_distance_scale : Annotated [Optional [float ], typer .Option (help = "Scale for realism rewards" )] = None ,
120
+ speed_distance_scale : Annotated [Optional [float ], typer .Option (help = "Scale for realism rewards" )] = None ,
121
+ jerk_smoothness_scale : Annotated [Optional [float ], typer .Option (help = "Scale for realism rewards" )] = None ,
120
122
dist_to_goal_threshold : Annotated [Optional [float ], typer .Option (help = "The distance threshold for goal-achieved" )] = None ,
121
123
randomize_rewards : Annotated [Optional [int ], typer .Option (help = "If reward_type == reward_conditioned, choose the condition_mode; 0 or 1" )] = 0 ,
122
124
sampling_seed : Annotated [Optional [int ], typer .Option (help = "The seed for sampling scenes" )] = None ,
@@ -174,6 +176,8 @@ def run(
174
176
"off_road_weight" : off_road_weight ,
175
177
"goal_achieved_weight" : goal_achieved_weight ,
176
178
"waypoint_distance_scale" : waypoint_distance_scale ,
179
+ "jerk_smoothness_scale" : jerk_smoothness_scale ,
180
+ "speed_distance_scale" : speed_distance_scale ,
177
181
"dist_to_goal_threshold" : dist_to_goal_threshold ,
178
182
"sampling_seed" : sampling_seed ,
179
183
"obs_radius" : obs_radius ,
0 commit comments