CatVTON / densepose /data /samplers /densepose_cse_uniform.py
zhengchong's picture
chore: Update dependencies and code structure
6eb1d7d
raw
history blame contribute delete
No virus
318 Bytes
# Copyright (c) Facebook, Inc. and its affiliates.
# pyre-unsafe
from .densepose_cse_base import DensePoseCSEBaseSampler
from .densepose_uniform import DensePoseUniformSampler
class DensePoseCSEUniformSampler(DensePoseCSEBaseSampler, DensePoseUniformSampler):
"""
Uniform Sampler for CSE
"""
pass