theDocWho's picture
Initial commit: end-to-end car damage + repair-cost predictor
4ce7a7e
Raw
History Blame Contribute Delete
468 Bytes
"""ccdp.identification — car ID pipeline + unidentified bucket + reference table."""
from . import car_identifier, fallback_estimator, reference_table, unidentified
from .car_identifier import IdentificationResult, identify
from .fallback_estimator import CostEstimate, estimate
__all__ = [
"CostEstimate",
"IdentificationResult",
"car_identifier",
"estimate",
"fallback_estimator",
"identify",
"reference_table",
"unidentified",
]