gpt2-large-dutch / push.sh
yhavinga's picture
Add scripts, model config etc
c6e3db9
#!/bin/bash
source ~/venv/bin/activate
while true
do
echo -n "Checking at .. "
date
BEHIND=`git rev-list origin..HEAD`
if [ ! -z "$BEHIND" ]
then
git push origin
fi
sleep 180
done