Initial commit: handshapes multiclass project

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-19 22:27:20 -05:00
commit 816e34cb17
22 changed files with 2820 additions and 0 deletions

16
what_to_do.txt Normal file
View File

@@ -0,0 +1,16 @@
./make_seq_dirs.sh Mother Father
python capture_sequence.py --label Mother --split train --seconds 0.8 --count 100
python capture_sequence.py --label Mother --split val --seconds 0.8 --count 20
python capture_sequence.py --label Father --split train --seconds 0.8 --count 100
python capture_sequence.py --label Father --split val --seconds 0.8 --count 20
python capture_sequence.py --label Go --split train --seconds 0.8 --count 100
python capture_sequence.py --label Go --split val --seconds 0.8 --count 20
python prep_sequence_resampled.py --in sequences --out landmarks_seq32 --frames 32
python train_seq.py --landmarks landmarks_seq32 --out asl_seq32_gru_mother_father_go.pt
python eval_val.py --landmarks landmarks_seq32 --model asl_seq32_gru_mother_father_go.pt
python infer_seq_webcam.py --model asl_seq32_gru_mother_father_go.pt --threshold 0.35 --smooth 0.1