File size: 779 Bytes
5f5f544
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.

from .normal_base_dataset import NormalBaseDataset
from .normal_hi4d_dataset import NormalHi4dDataset
from .normal_metasim_dataset import NormalMetaSimDataset
from .normal_render_people_body_dataset import NormalRenderPeopleBodyDataset
from .normal_render_people_multihuman_dataset import NormalRenderPeopleMultihumanDataset
from .normal_thuman_dataset import NormalTHumanDataset

__all__ = [
    "NormalBaseDataset",
    "NormalHi4dDataset",
    "NormalMetaSimDataset",
    "NormalRenderPeopleBodyDataset",
    "NormalRenderPeopleMultihumanDataset",
    "NormalTHumanDataset",
]