MINIMA / hloc /matchers /__init__.py
lsxi77777's picture
commit message
a930e1f
raw
history blame contribute delete
123 Bytes
def get_matcher(matcher):
mod = __import__(f"{__name__}.{matcher}", fromlist=[""])
return getattr(mod, "Model")