Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: kminoda <[email protected]>
  • Loading branch information
kminoda committed Nov 14, 2023
1 parent d9bc3ef commit 0e90285
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ def plot_thresholds(recall_list, lower_bound, threshold, scale, save_path=None):
def plot_bag_compare(save_path, results):
# Ignore the initial part larger than this value, since the values right after launch may diverge.
THRESHOLD_FOR_INITIALIZED_ERROR = 1.0
ignore_index = np.where(results.long_radius.expected_error < THRESHOLD_FOR_INITIALIZED_ERROR)[
0
][0]
ignore_index = np.where(
results.long_radius.expected_error < THRESHOLD_FOR_INITIALIZED_ERROR)[0][0]
error_maximum = np.max(
np.hstack(
[
Expand Down

0 comments on commit 0e90285

Please sign in to comment.