MrlolDev's picture
Upload upload.sh with huggingface_hub
ce4e808 verified
raw
history blame contribute delete
391 Bytes
#!/bin/bash
# Upload all project files to HuggingFace model repo
FILES=(
"benchmark.py"
"preview.py"
"extract_features.py"
"train.py"
"setup.sh"
"requirements.txt"
"README.md"
)
for f in "${FILES[@]}"; do
if [ -f "$f" ]; then
echo "Uploading $f..."
hf upload MrlolDev/voxtral-emotion-speech "$f" --repo-type model
else
echo "Skipping $f (not found)"
fi
done