Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
niobures
/
mmaction2
like
0
arxiv:
4 papers
Model card
Files
Files and versions
xet
Community
main
mmaction2
/
docker
/
serve
/
entrypoint.sh
niobures
mmaction2
d3dbf03
verified
23 days ago
raw
Copy download link
history
blame
contribute
delete
209 Bytes
#!/bin/bash
set
-e
if
[[
"
$1
"
=
"serve"
]];
then
shift
1
torchserve --start --ts-config /home/model-server/config.properties
else
eval
"
$@
"
fi
# prevent docker exit
tail
-f /dev/null