MohamedRashad's picture
Add skin and tokenizer systems with parsing and tokenization functionalities
11b119e
raw
history blame contribute delete
199 Bytes
from pointcept.utils.registry import Registry
HOOKS = Registry("hooks")
def build_hooks(cfg):
hooks = []
for hook_cfg in cfg:
hooks.append(HOOKS.build(hook_cfg))
return hooks