Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Realcat/image-matching-webui
fantos
/
vidimatch
like
1
Runtime error
App
Files
Files
Community
45354a0
vidimatch
/
hloc
/
matchers
/
__init__.py
Vincentqyw
add: files
9223079
over 1 year ago
raw
Copy download link
history
blame
Safe
120 Bytes
def
get_matcher
(
matcher
):
mod =
__import__
(
f"
{__name__}
.
{matcher}
"
, fromlist=[
""
])
return
getattr
(mod,
"Model"
)