mirror of
https://github.com/aigc3d/LAM_Audio2Expression.git
synced 2026-02-05 01:49:23 +08:00
14 lines
232 B
Python
14 lines
232 B
Python
"""
|
|
Modified by https://github.com/Pointcept/Pointcept
|
|
"""
|
|
|
|
from utils.registry import Registry
|
|
|
|
MODELS = Registry("models")
|
|
MODULES = Registry("modules")
|
|
|
|
|
|
def build_model(cfg):
|
|
"""Build models."""
|
|
return MODELS.build(cfg)
|