Skip to content

Commit

Permalink
Remove limit on analysis from debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
SGenheden committed May 16, 2022
1 parent 2e78c5c commit 42ac2ab
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions analysis/route_quality.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,6 @@ def main(optional_args: Optional[Sequence[str]] = None) -> None:
stats = []
for routes, reference in zip(routes_list, tqdm(references)):
stats.append(_analyze_routes(routes, reference, args.ks))
if len(stats) == 10:
break
stats = pd.DataFrame(stats)

print(f"Number of solved targets: {stats['solved target'].sum()}")
Expand All @@ -157,4 +155,4 @@ def main(optional_args: Optional[Sequence[str]] = None) -> None:


if __name__ == "__main__":
main()
main()

0 comments on commit 42ac2ab

Please sign in to comment.