FIsh / entrypoint.sh
samarth2002's picture
files added
5fc76ef
raw
history blame contribute delete
171 Bytes
#!/bin/bash
CUDA_ENABLED=${CUDA_ENABLED:-true}
DEVICE=""
if [ "${CUDA_ENABLED}" != "true" ]; then
DEVICE="--device cpu"
fi
exec python tools/run_webui.py ${DEVICE}