Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
brjathu
/
HMR2.0
like
82
Runtime error
App
Files
Files
Community
12
Fetching metadata from the HF Docker repository...
c6a8969
HMR2.0
/
hmr2
/
models
/
backbones
/
__init__.py
brjathu
Adding HF files
29a229f
over 1 year ago
raw
Copy download link
history
blame
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'
)