Spaces:
Runtime error
Runtime error
| # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| """Evaluation metrics for motion quality (foot skate, contact consistency, constraint following).""" | |
| from .base import ( | |
| Metric, | |
| aggregate_metrics, | |
| clear_metrics, | |
| compute_metrics, | |
| ) | |
| from .constraints import ContraintFollow | |
| from .foot_skate import ( | |
| FootContactConsistency, | |
| FootSkateFromContacts, | |
| FootSkateFromHeight, | |
| FootSkateRatio, | |
| ) | |
| from .tmr import ( | |
| TMR_EmbeddingMetric, | |
| TMR_Metric, | |
| compute_tmr_per_sample_retrieval, | |
| compute_tmr_retrieval_metrics, | |
| ) | |
| __all__ = [ | |
| "Metric", | |
| "ContraintFollow", | |
| "FootContactConsistency", | |
| "FootSkateFromContacts", | |
| "FootSkateFromHeight", | |
| "FootSkateRatio", | |
| "TMR_EmbeddingMetric", | |
| "TMR_Metric", | |
| "aggregate_metrics", | |
| "clear_metrics", | |
| "compute_metrics", | |
| "compute_tmr_per_sample_retrieval", | |
| "compute_tmr_retrieval_metrics", | |
| ] | |