Fashable-Tryon / densepose /modeling /predictors /chart_with_confidence.py
abubakar123456's picture
Upload 750 files
71d94dd verified
raw
history blame
447 Bytes
# Copyright (c) Facebook, Inc. and its affiliates.
# pyre-unsafe
from . import DensePoseChartConfidencePredictorMixin, DensePoseChartPredictor
from .registry import DENSEPOSE_PREDICTOR_REGISTRY
@DENSEPOSE_PREDICTOR_REGISTRY.register()
class DensePoseChartWithConfidencePredictor(
DensePoseChartConfidencePredictorMixin, DensePoseChartPredictor
):
"""
Predictor that combines chart and chart confidence estimation
"""
pass