Spaces:
Running
Running
File size: 171 Bytes
b128c76 |
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/run_webui.py ${DEVICE}
|