Official ML repo. for the sign language interpreter.
Data preprocessing
- Put raw data in a folder called "raw_data", or edit your desired folder path in "config.json"
- Run
python format_dataset.py
to re-format your data into a folder called "motion_data" - Run
python generate_split.py
to generate train/validation/testing split
Running model
- To train a model, run
python train_model.py
with theevaluate_saved
flag set to None. - To evaluate a trained model, run
python train_model.py
with theevaluate_saved
flag appointed to your desired model path.