12 lines
255 B
Bash
12 lines
255 B
Bash
#!/bin/bash
|
|
# Run training with distributed setup
|
|
|
|
set -e
|
|
|
|
# Install accelerate if not present
|
|
pip install -q accelerate
|
|
|
|
# Launch with accelerate
|
|
# Note: Use the dedicated train-on-this-server.sh instead
|
|
echo "See train-on-this-server.sh for full setup"
|