Data
├── DataLabels_ParsedMat
│ ├── Fall
│ ├── GoingDownS
│ ├── GoingUpS
│ ├── Jumping
│ ├── Running
│ ├── SittingDown
│ ├── Walking
│ ├── ToMatLab.py
│ ├── loaddata.mat
│ └── fulldata.mat
├── FullDataParse
│ ├── Label.py
│ ├── *Labeled.csv (data labeled and Transfomed)
│ ├── *.csv (Fall data parsed)
│ └── parser.m
└── fulldata.mat
DataLabels_ParsedMat
contains all of the data incsv
format with aToMatLab.py
file which converts that data into MATLAB format which can be used to train the model. Theloaddata.mat
file loadsfulldata.mat
and extracts features to train the model.FullDataParse
contains all the parsed fall data incsv
format which was generated byparser.m
, which removes garbage data.Label.py
labels and transforms the fall data.