| # Copyright (c) Facebook, Inc. and its affiliates. | |
| # pyre-unsafe | |
| from . import DensePoseChartConfidencePredictorMixin, DensePoseChartPredictor | |
| from .registry import DENSEPOSE_PREDICTOR_REGISTRY | |
| class DensePoseChartWithConfidencePredictor( | |
| DensePoseChartConfidencePredictorMixin, DensePoseChartPredictor | |
| ): | |
| """ | |
| Predictor that combines chart and chart confidence estimation | |
| """ | |
| pass | |