kairunwen's picture
Update Code
57746f1
raw
history blame contribute delete
305 Bytes
"""
Model Builder
Author: Xiaoyang Wu ([email protected])
Please cite our work if the code is helpful to you.
"""
from pointcept.utils.registry import Registry
MODELS = Registry("models")
MODULES = Registry("modules")
def build_model(cfg):
"""Build models."""
return MODELS.build(cfg)