15 lines
288 B
Bash
Executable File
15 lines
288 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Train single letters:
|
|
python train_mlp.py --letter A --epochs 40 --batch 64
|
|
# etc for B-Z
|
|
|
|
# Each run saves: asl_<LETTER>_mlp.pt
|
|
|
|
# OR all letters at once:
|
|
# for L in {A..Z}; do
|
|
# python train_mlp.py --letter "$L" --epochs 40 --batch 64
|
|
# done
|
|
|