fish-audio-t / entrypoint.sh
kiylu's picture
add project files
b128c76
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}