models_animerun / UnSAMFlow /models /get_model.py
doanh25032004's picture
Upload folder using huggingface_hub
872b0a0 verified
Raw
History Blame Contribute Delete
181 Bytes
from .pwclite import PWCLite
def get_model(cfg):
if cfg.type == "pwclite":
model = PWCLite(cfg)
else:
raise NotImplementedError(cfg.type)
return model