gpt2-thai / start.sh
sakares's picture
init app template with streamlit. credit to GPT2 Indonesian https://huggingface.co/spaces/flax-community/gpt2-indonesian
c3d7797
#!/usr/bin/env bash
set -e
if [ "$DEBUG" = true ] ; then
echo 'Debugging - ON'
nodemon --exec streamlit run main.py
else
echo 'Debugging - OFF'
streamlit run main.py
fi