├── .gitignore ├── LICENSE ├── README.md ├── data └── corr_numeral_gesture_dataset │ ├── README.md │ └── database.sqlite ├── path_signatures_introduction.ipynb ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/README.md -------------------------------------------------------------------------------- /data/corr_numeral_gesture_dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/data/corr_numeral_gesture_dataset/README.md -------------------------------------------------------------------------------- /data/corr_numeral_gesture_dataset/database.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/data/corr_numeral_gesture_dataset/database.sqlite -------------------------------------------------------------------------------- /path_signatures_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/path_signatures_introduction.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pafoster/path_signatures_introduction/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7 2 | --------------------------------------------------------------------------------