Spaces:
Runtime error
Runtime error
File size: 503 Bytes
d5b7ee9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | echo "🚀 Synchronizing with Hugging Face Space (luohoa97/BitFinTrainer)..."
# Use hf upload to bypass git credential issues
# This respects .gitignore and excludes heavy folders
hf upload luohoa97/BitFinTrainer . . --repo-type space \
--exclude="data/*" \
--exclude="models/*" \
--exclude=".venv/*" \
--exclude=".gemini/*" \
--commit-message="Deploy BitNet-Transformer Trainer"
echo "✅ Finished! Your Space is building at: https://huggingface.co/spaces/luohoa97/BitFinTrainer"
|