Spaces:
Running
on
Zero
Running
on
Zero
| # Copyright (c) Meta Platforms, Inc. and affiliates. | |
| # All rights reserved. | |
| # | |
| # This source code is licensed under the license found in the | |
| # LICENSE file in the root directory of this source tree. | |
| from .base_head import BaseHead | |
| from .coord_cls_heads import RTMCCHead, SimCCHead | |
| from .heatmap_heads import (AssociativeEmbeddingHead, CIDHead, CPMHead, | |
| HeatmapHead, MSPNHead, ViPNASHead) | |
| from .hybrid_heads import DEKRHead, VisPredictHead | |
| from .regression_heads import (DSNTHead, IntegralRegressionHead, | |
| RegressionHead, RLEHead, TemporalRegressionHead, | |
| TrajectoryRegressionHead) | |
| __all__ = [ | |
| 'BaseHead', 'HeatmapHead', 'CPMHead', 'MSPNHead', 'ViPNASHead', | |
| 'RegressionHead', 'IntegralRegressionHead', 'SimCCHead', 'RLEHead', | |
| 'DSNTHead', 'AssociativeEmbeddingHead', 'DEKRHead', 'VisPredictHead', | |
| 'CIDHead', 'RTMCCHead', 'TemporalRegressionHead', | |
| 'TrajectoryRegressionHead', | |
| ] | |