Spaces:
Running
Running
File size: 287 Bytes
4893ce0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """
Dataset Builder
Author: Xiaoyang Wu (xiaoyang.wu.cs@gmail.com)
Please cite our work if the code is helpful to you.
"""
from pointcept.utils.registry import Registry
DATASETS = Registry("datasets")
def build_dataset(cfg):
"""Build datasets."""
return DATASETS.build(cfg)
|