Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Models Directory

This directory contains model files used by the hand gesture classification system.

Files

hand_landmarker.task

MediaPipe hand landmark detection model used for feature extraction.

rps_classifier.joblib

Trained scikit-learn classifier for rock-paper-scissors gesture classification.

  • Purpose: Classifies extracted hand features into rock, paper, or scissors
  • Created by: Training script (handmotion.train)
  • Used by: Prediction script (handmotion.predict)
  • Format: Joblib-serialized scikit-learn model

metrics.json

Evaluation metrics from model training.

  • Purpose: Stores accuracy, confusion matrix, and classification report
  • Created by: Training script (handmotion.train)
  • Format: JSON file with evaluation results

Model Pipeline

  1. hand_landmarker.task extracts hand landmarks from raw images
  2. Features are processed and saved to data/processed/rps/data.npz
  3. rps_classifier.joblib is trained on these features
  4. Trained classifier is used for prediction on new images