Initial commit: ASL handshape recognition project
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
14
2train.sh
Executable file
14
2train.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/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
|
||||
|
||||
Reference in New Issue
Block a user