Spaces:
No application file
No application file
File size: 167 Bytes
8b14bed |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
CUDA_ENABLED=${CUDA_ENABLED:-true}
DEVICE=""
if [ "${CUDA_ENABLED}" != "true" ]; then
DEVICE="--device cpu"
fi
exec python tools/webui.py ${DEVICE}
|