Atlas-online-0318 / src /eval /__init__.py
guoyb0's picture
Upload code snapshot 0318
f693366 verified
raw
history blame contribute delete
391 Bytes
"""Atlas evaluation module."""
from .metrics import (
parse_atlas_output,
calculate_detection_f1,
bin_to_meters,
meters_to_bin,
normalize_category,
normalize_ground_truths,
)
__all__ = [
"parse_atlas_output",
"calculate_detection_f1",
"bin_to_meters",
"meters_to_bin",
"normalize_category",
"normalize_ground_truths",
]