RE-OWOD/projects/DensePose/densepose/data/datasets/__init__.py

6 lines
229 B
Python
Raw Normal View History

2022-01-04 13:49:38 +08:00
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
from . import builtin # ensure the builtin datasets are registered
__all__ = [k for k in globals().keys() if "builtin" not in k and not k.startswith("_")]