Skip to content
Snippets Groups Projects
Commit a482806f authored by Eli Henry Dykhne's avatar Eli Henry Dykhne
Browse files

fixed metric weight to ensure it does not affect final scores

parent cd174224
No related branches found
No related tags found
2 merge requests!21Major changes. convert nuplan devkit to handle occlusions for project,!5Relavant agents occluded metrics
This diff is collapsed.
......@@ -4,6 +4,7 @@ closed_loop_nonreactive_agents_weighted_average:
metric_weights: # Below we list the metrics used in the scenario scoring function and their corresponsing weights to calculate a weighted average score for each scenario,
# if not specified, the weight is set as default.
# metric name : metric weight in the weighted average function
is_relavant_agent_occluded: 0.0 # this metric is only for our occlusion stuff so it should not affect the other weights
ego_progress_along_expert_route: 5.0 # This metric has the highest weight equal to 5.0 in the weighted average function, its base score can take a value in [0,1] depending on the ratio of ego to expert progress
time_to_collision_within_bound: 5.0 # This metric has the highest weight equal to 5.0 in the weighted average function, its base score can be 0 or 1 depending on the minimum time to collision threshold
speed_limit_compliance: 4.0 # This metric has a weight equal to 4.0 in the weighted average function, its base score can take a value in [0,1] depending on the amount and duration of over-speeding
......
......@@ -4,6 +4,7 @@ closed_loop_reactive_agents_weighted_average:
metric_weights: # Below we list the metrics used in the scenario scoring function and their corresponsing weights to calculate a weighted average score for each scenario,
# if not specified, the weight is set as default.
# metric name : metric weight in the weighted average function
is_relavant_agent_occluded: 0.0 # this metric is only for our occlusion stuff so it should not affect the other weights
ego_progress_along_expert_route: 5.0 # This metric has the highest weight equal to 5.0 in the weighted average function, its base score can take a value in [0,1] depending on the ratio of ego to expert progress
time_to_collision_within_bound: 5.0 # This metric has the highest weight equal to 5.0 in the weighted average function, its base score can be 0 or 1 depending on the minimum time to collision threshold
speed_limit_compliance: 4.0 # This metric has a weight equal to 4.0 in the weighted average function, its base score can take a value in [0,1] depending on the amount and duration of over-speeding
......
......@@ -4,6 +4,7 @@ open_loop_boxes_weighted_average:
metric_weights: # Below we list the metrics used in the scenario scoring function and their corresponsing weights to calculate a weighted average score for each scenario,
# if not specified, the weight is set as default.
# metric name : metric weight in the weighted average function
is_relavant_agent_occluded: 0.0 # this metric is only for our occlusion stuff so it should not affect the other weights
planner_expert_average_l2_error_within_bound: 1 # Default is also 1, keeping here for easier understanding of the structure
planner_expert_average_heading_error_within_bound: 2
planner_expert_final_l2_error_within_bound: 1 # Default is also 1, keeping here for easier understanding of the structure
......
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