File size: 321 Bytes
30e9297 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
# Download and prepare the dataset
set -e
cd "$(dirname "$0")/.."
echo "Installing dependencies..."
pip install -r requirements.txt
echo "Dataset will be downloaded automatically during training via HuggingFace datasets."
echo "Dataset: drengskapur/midi-classical-music (~50MB, 4.8K MIDI files)"
echo "Done!"
|