Add training results, update meta files

This commit is contained in:
2025-10-20 23:40:58 +02:00
parent 43363b6880
commit 8cad184cb5
170 changed files with 52 additions and 1058 deletions

View File

@@ -1,25 +1,6 @@
#!/bin/bash #!/bin/bash
set -e set -e
# Find all staged .ipynb files ./convert_jupytext.sh py
NOTEBOOKS=$(git diff --cached --name-only --diff-filter=ACM | grep '\.ipynb$' || true)
if [ -z "$NOTEBOOKS" ]; then
echo "No Jupyter notebooks staged. Skipping Jupytext conversion."
exit 0
fi
echo "Converting staged Jupyter notebooks to .py (percent format)..."
# Loop through each notebook and convert
for nb in $NOTEBOOKS; do
if [ -f "$nb" ]; then
echo " - Converting $nb"
jupytext --to py:percent "$nb"
pyfile="${nb%.ipynb}.py"
# Stage the generated .py file
git add "$pyfile"
fi
done
echo "✅ Jupytext conversion complete." echo "✅ Jupytext conversion complete."

6
raft/.gitignore vendored
View File

@@ -1,3 +1,5 @@
offload offload/
finetuned/** finetuned/**
!*.md !finetuned/
!finetuned/**/
!finetuned/**/train.md

Some files were not shown because too many files have changed in this diff Show More