Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
geopavlakos
/
HaMeR
like
14
Build error
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
main
HaMeR
/
hamer
/
models
/
backbones
/
__init__.py
geopavlakos
Initial commit
d7a991a
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
193 Bytes
from
.vit
import
vit
def
create_backbone
(
cfg
):
if
cfg.MODEL.BACKBONE.TYPE ==
'vit'
:
return
vit(cfg)
else
:
raise
NotImplementedError(
'Backbone type is not implemented'
)