Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1fd3ba1c authored by AUTERNAUD Alex's avatar AUTERNAUD Alex
Browse files

new parameter in config

parent 43e71290
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,8 @@ class ControllerConfig(TemplatedConfig): ...@@ -84,7 +84,8 @@ class ControllerConfig(TemplatedConfig):
"goal_loop_time": float, "goal_loop_time": float,
"goal_finder_enabled": bool, "goal_finder_enabled": bool,
"path_planner_enabled": bool, "path_planner_enabled": bool,
"update_goals_enabled": bool "update_goals_enabled": bool,
"dilation_iter": int
} }
...@@ -135,4 +136,4 @@ class RobotConfig(TemplatedConfig): ...@@ -135,4 +136,4 @@ class RobotConfig(TemplatedConfig):
"base_cam_fov_h" : float, "base_cam_fov_h" : float,
"has_pan" : bool, "has_pan" : bool,
"has_tilt" : bool "has_tilt" : bool
} }
\ No newline at end of file
logging_mode: 'INFO' # INFO, WARNING, ERROR, CRITICAL DEBUG logging_mode: 'INFO' # INFO, WARNING, ERROR, CRITICAL DEBUG
# mpc parameters # mpc parameters
h: 0.2 h: 0.2
fw_time: 3. fw_time: 5.
u_lb: [-3.0, -0.5, -0.1] u_lb: [-3.0, -0.5, -0.1]
u_ub: [3.0, 0.5, 0.2] u_ub: [3.0, 0.5, 0.2]
reg_parameter: [1., 1., 1.] reg_parameter: [1., 10., 1.]
max_acceleration: [0.4, 0.4, 0.3] max_acceleration: [0.4, 0.4, 0.3]
max_iter_optim: 5 max_iter_optim: 5
# targets # targets
...@@ -21,7 +21,7 @@ relative_h_pose: [0.90, -0.2] # meter ...@@ -21,7 +21,7 @@ relative_h_pose: [0.90, -0.2] # meter
check_object_fw_traj_offset: 0.4 # meter check_object_fw_traj_offset: 0.4 # meter
# mpc losses parameters # mpc losses parameters
loss: 0 # max_out_y_dist_ang, maxout_x_y_ang by default loss: 0 # max_out_y_dist_ang, maxout_x_y_ang by default
wall_avoidance_points: [[0., -0.3]] wall_avoidance_points: [[0., -0.3]] # [[0., 0.2], [0.15, 0.1], [-0.15, 0.1], [0., -0.3]] # [[0., -0.3]]
weights_description: ['goto_weight', 'human_features_weight', 'object_cost_map_weight', 'social_cost_map_weight', 'cost_map_weight', 'wall_avoidance_weight'] weights_description: ['goto_weight', 'human_features_weight', 'object_cost_map_weight', 'social_cost_map_weight', 'cost_map_weight', 'wall_avoidance_weight']
goto_weight: 1. goto_weight: 1.
human_features_weight: 1. human_features_weight: 1.
...@@ -30,17 +30,19 @@ social_cost_map_weight: 20. ...@@ -30,17 +30,19 @@ social_cost_map_weight: 20.
cost_map_weight: 1. cost_map_weight: 1.
wall_avoidance_weight: 100. wall_avoidance_weight: 100.
loss_rad: [[0.2, 0.2, 0.1, 0.2, 0.2, 0.2, 0.1], [0.2, 0.2, 0.1, 0.2, 0.2, 0.2, 0.1], [0.2, 0.2, 0.1, 0.2, 0.2, 0.2, 0.1]] # [(x, y , ang) goto goal, (x, y, ang) human features, pan] x3 (for each mpc mode) loss_rad: [[0.2, 0.2, 0.1, 0.2, 0.2, 0.2, 0.1], [0.2, 0.2, 0.1, 0.2, 0.2, 0.2, 0.1], [0.2, 0.2, 0.1, 0.2, 0.2, 0.2, 0.1]] # [(x, y , ang) goto goal, (x, y, ang) human features, pan] x3 (for each mpc mode)
loss_coef: [[50, 50, 0.5, 0, 0, 0, 3], [0, 0, 0, 50, 50, 3, 3], [10, 10, 1, 50, 50, 2, 3]] # [(x, y , ang) goto goal, (x, y, ang) human features, pan] x3 (for each mpc mode) loss_coef: [[50, 50, 1, 0, 0, 0, 3], [0, 0, 0, 50, 50, 3, 3], [10, 10, 1, 50, 50, 2, 3]] # [(x, y , ang) goto goal, (x, y, ang) human features, pan] x3 (for each mpc mode)
# cost_map parameters # cost_map parameters
step_meshes: 5 # sampling every x cm step_meshes: 5 # sampling every x cm
# ssn model parameters # ssn model parameters
group_detection_stride: 0.6 group_detection_stride: 0.6
# mpc preprocessing parameters # mpc preprocessing parameters
waypoint_distance: 1.0 #1.2 waypoint_distance: 1.0 #1.2
orientation_distance_threshold: 1. orientation_distance_threshold: 0.5
# controller parameters # controller parameters
path_loop_time: 1. path_loop_time: 1.
goal_loop_time: 1. goal_loop_time: 1.
path_planner_enabled: true path_planner_enabled: true
goal_finder_enabled: true goal_finder_enabled: true
update_goals_enabled: true update_goals_enabled: true
# map parameters
dilation_iter: 1
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment