YYYYYYUUU's picture
Backup FULL poplab work tree (source, configs, libs, scripts) excl. .pth
08cde47 verified
Raw
History Blame Contribute Delete
287 Bytes
"""
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)