xzxzxiaoo's picture
Upload folder using huggingface_hub
94e8ee8 verified
raw
history blame contribute delete
No virus
435 Bytes
systems = {}
def register(name):
def decorator(cls):
systems[name] = cls
return cls
return decorator
def make(name, config, load_from_checkpoint=None):
if load_from_checkpoint is None:
system = systems[name](config)
else:
system = systems[name].load_from_checkpoint(load_from_checkpoint, strict=False, config=config)
return system
from . import neus, neus_ortho, neus_pinhole