├── LICENSE ├── LICENSE.txt ├── README.md ├── demo ├── 20180720_174416.jpg └── test_hsemotion_package.ipynb ├── hsemotion ├── __init__.py └── facial_emotions.py ├── setup.cfg └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/README.md -------------------------------------------------------------------------------- /demo/20180720_174416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/demo/20180720_174416.jpg -------------------------------------------------------------------------------- /demo/test_hsemotion_package.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/demo/test_hsemotion_package.ipynb -------------------------------------------------------------------------------- /hsemotion/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.0' 2 | -------------------------------------------------------------------------------- /hsemotion/facial_emotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/hsemotion/facial_emotions.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av-savchenko/hsemotion/HEAD/setup.py --------------------------------------------------------------------------------