Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 1.06 KB

README.md

File metadata and controls

24 lines (22 loc) · 1.06 KB

Software-QBIT

Data

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 in csv format with a ToMatLab.py file which converts that data into MATLAB format which can be used to train the model. The loaddata.mat file loads fulldata.mat and extracts features to train the model.
  • FullDataParse contains all the parsed fall data in csv format which was generated by parser.m, which removes garbage data. Label.py labels and transforms the fall data.