CatVTON / densepose /modeling /predictors /cse_with_confidence.py
zhengchong's picture
chore: Update dependencies and code structure
6eb1d7d
raw
history blame
463 Bytes
# Copyright (c) Facebook, Inc. and its affiliates.
# pyre-unsafe
from . import DensePoseEmbeddingConfidencePredictorMixin, DensePoseEmbeddingPredictor
from .registry import DENSEPOSE_PREDICTOR_REGISTRY
@DENSEPOSE_PREDICTOR_REGISTRY.register()
class DensePoseEmbeddingWithConfidencePredictor(
DensePoseEmbeddingConfidencePredictorMixin, DensePoseEmbeddingPredictor
):
"""
Predictor that combines CSE and CSE confidence estimation
"""
pass