srijandas07 / LSTM_action_recognition

Compute action classification accuracy from skeleton joints using LSTM
14 stars 4 forks source link

Split information missing #1

Closed pcp16 closed 4 years ago

pcp16 commented 4 years ago

the LSTM trainer expects text files that define the splits used. These files are not available with the code, nor the Toyota SmartHomes dataset (AFAIK). What is the expected format of these files? Can you make them available here? Thanks!

srijandas07 commented 4 years ago

The split files are text files with the video names. The split file depends on your dataset ( the splits). The data for Toyota smarthome is available at https://project.inria.fr/toyotasmarthome/ Let me know if this solves your problem.

pcp16 commented 4 years ago

Thank toy for your reply! I guess for the cross-subject (CS) training these files contain the training and testing subjects described on the paper. Although "validation" subjects would still be missing.

srijandas07 commented 4 years ago

Yes true. For validation, I randomly take out 5% of the data from the training file.

pcp16 commented 4 years ago

Great, that solves the doubt then. Thank you.