Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Realcat
/
imcui-dev
like
0
Running
App
Files
Files
Community
4bde5d3
imcui-dev
/
hloc
/
matchers
/
__init__.py
Realcat
init: files
4bde5d3
3 months ago
raw
Copy download link
history
blame
Safe
120 Bytes
def
get_matcher
(
matcher
):
mod =
__import__
(
f"
{__name__}
.
{matcher}
"
, fromlist=[
""
])
return
getattr
(mod,
"Model"
)