├── .gitignore ├── Assets └── Intel_Movidius_NCS.jpg ├── Examples └── Sign-Language-Classifier │ └── Sign-Language-Classifier.ipynb ├── LICENSE ├── README.md ├── keras2graph.py ├── ncs_process.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /Assets/Intel_Movidius_NCS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Intel-Movidius-NCS-Keras/HEAD/Assets/Intel_Movidius_NCS.jpg -------------------------------------------------------------------------------- /Examples/Sign-Language-Classifier/Sign-Language-Classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Intel-Movidius-NCS-Keras/HEAD/Examples/Sign-Language-Classifier/Sign-Language-Classifier.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Intel-Movidius-NCS-Keras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Intel-Movidius-NCS-Keras/HEAD/README.md -------------------------------------------------------------------------------- /keras2graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Intel-Movidius-NCS-Keras/HEAD/keras2graph.py -------------------------------------------------------------------------------- /ncs_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Intel-Movidius-NCS-Keras/HEAD/ncs_process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | keras 2 | h5py 3 | --------------------------------------------------------------------------------