初始化项目,由ModelHub XC社区提供模型

Model: yhavinga/gpt2-large-dutch
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-01 11:51:18 +08:00
commit a6d98f1b47
26 changed files with 51259 additions and 0 deletions

16
push.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/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