Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LittleFrog
/
MatchAnything
like
83
Running
on
Zero
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
05898fd
MatchAnything
/
imcui
/
hloc
/
matchers
/
__init__.py
XingyiHe
init commit
3040ac4
11 days ago
raw
Copy download link
history
blame
Safe
120 Bytes
def
get_matcher
(
matcher
):
mod =
__import__
(
f"
{__name__}
.
{matcher}
"
, fromlist=[
""
])
return
getattr
(mod,
"Model"
)