├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── .nojekyll ├── Makefile ├── doctrees │ ├── environment.pickle │ ├── gaitpy.doctree │ ├── gaitpy_functions.doctree │ ├── index.doctree │ └── modules.doctree ├── html │ ├── .buildinfo │ ├── _sources │ │ ├── gaitpy.rst.txt │ │ ├── gaitpy_functions.rst.txt │ │ ├── index.rst.txt │ │ └── modules.rst.txt │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Inconsolata.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── jquery-3.4.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ ├── gaitpy.html │ ├── gaitpy_functions.html │ ├── genindex.html │ ├── index.html │ ├── modules.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── index.html ├── make.bat └── source │ ├── conf.py │ ├── gaitpy.rst │ ├── gaitpy_functions.rst │ ├── index.rst │ └── modules.rst ├── gaitpy ├── __init__.py ├── demo │ ├── __init__.py │ ├── demo.py │ ├── demo_classify_bouts.h5 │ ├── demo_data.csv │ ├── demo_gait_features.csv │ └── demo_plot_contacts.html ├── gait.py ├── model │ ├── feature_order.txt │ └── model.pkl ├── signal_features.py ├── tests │ ├── __init__.py │ ├── test_gait.py │ ├── test_signal_features.py │ └── test_util.py └── util.py ├── paper ├── Figure1.png ├── Figure2.png ├── Figure3.png ├── paper.bib └── paper.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/doctrees/gaitpy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/doctrees/gaitpy.doctree -------------------------------------------------------------------------------- /docs/doctrees/gaitpy_functions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/doctrees/gaitpy_functions.doctree -------------------------------------------------------------------------------- /docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/doctrees/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/doctrees/modules.doctree -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/_sources/gaitpy.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_sources/gaitpy.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/gaitpy_functions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_sources/gaitpy_functions.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_sources/modules.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/gaitpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/gaitpy.html -------------------------------------------------------------------------------- /docs/html/gaitpy_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/gaitpy_functions.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/modules.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/gaitpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/source/gaitpy.rst -------------------------------------------------------------------------------- /docs/source/gaitpy_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/source/gaitpy_functions.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /gaitpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaitpy/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaitpy/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/demo/demo.py -------------------------------------------------------------------------------- /gaitpy/demo/demo_classify_bouts.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/demo/demo_classify_bouts.h5 -------------------------------------------------------------------------------- /gaitpy/demo/demo_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/demo/demo_data.csv -------------------------------------------------------------------------------- /gaitpy/demo/demo_gait_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/demo/demo_gait_features.csv -------------------------------------------------------------------------------- /gaitpy/demo/demo_plot_contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/demo/demo_plot_contacts.html -------------------------------------------------------------------------------- /gaitpy/gait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/gait.py -------------------------------------------------------------------------------- /gaitpy/model/feature_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/model/feature_order.txt -------------------------------------------------------------------------------- /gaitpy/model/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/model/model.pkl -------------------------------------------------------------------------------- /gaitpy/signal_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/signal_features.py -------------------------------------------------------------------------------- /gaitpy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaitpy/tests/test_gait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/tests/test_gait.py -------------------------------------------------------------------------------- /gaitpy/tests/test_signal_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/tests/test_signal_features.py -------------------------------------------------------------------------------- /gaitpy/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/tests/test_util.py -------------------------------------------------------------------------------- /gaitpy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/gaitpy/util.py -------------------------------------------------------------------------------- /paper/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/paper/Figure1.png -------------------------------------------------------------------------------- /paper/Figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/paper/Figure2.png -------------------------------------------------------------------------------- /paper/Figure3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/paper/Figure3.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/paper/paper.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt002/GaitPy/HEAD/setup.py --------------------------------------------------------------------------------