Assignments - Bex-Piede-7/ASL_CV GitHub Wiki

Assignment From: 6/4/25

https://www.kaggle.com/code/gusthema/asl-fingerspelling-recognition-w-tensorflow

recreate code and annotate

Assignment From: 7/2/25

  1. Add this piece of code

for i in range(len(y_test)-1): if y_test[i] != y_pred[i]: print(y_test[i],y_pred[i])

to find out which letters are most likely to be confused with which letters

  1. Additionally, read about multinomial linear regression.

  2. K-Means on subclusters (i.e., break down the cluster with 'p' in it into subclusters)