Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tomofi
/
NDLOCR
like
2
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a666167
NDLOCR
/
src
/
ndl_layout
/
mmdetection
/
docker
/
serve
/
entrypoint.sh
3v324v23
Add files
c9019cd
about 3 years ago
raw
Copy download link
history
blame
Safe
197 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