Spaces:
Running
Running
File size: 167 Bytes
8598b7e | 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}
|