├── LICENSE.md ├── README.md ├── data ├── README.MD └── annotations │ ├── test │ ├── nitec_celeba.csv │ ├── nitec_gaze360.csv │ ├── nitec_helen.csv │ └── nitec_widerface.csv │ └── train │ ├── nitec_celeba.csv │ ├── nitec_gaze360.csv │ ├── nitec_helen.csv │ └── nitec_widerface.csv ├── dataset.py ├── demo.py ├── nitec ├── __init__.py ├── classifier.py ├── model.py ├── results.py ├── utils.py └── visualize.py ├── pyproject.toml ├── test.py └── train.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/README.md -------------------------------------------------------------------------------- /data/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/README.MD -------------------------------------------------------------------------------- /data/annotations/test/nitec_celeba.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/test/nitec_celeba.csv -------------------------------------------------------------------------------- /data/annotations/test/nitec_gaze360.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/test/nitec_gaze360.csv -------------------------------------------------------------------------------- /data/annotations/test/nitec_helen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/test/nitec_helen.csv -------------------------------------------------------------------------------- /data/annotations/test/nitec_widerface.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/test/nitec_widerface.csv -------------------------------------------------------------------------------- /data/annotations/train/nitec_celeba.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/train/nitec_celeba.csv -------------------------------------------------------------------------------- /data/annotations/train/nitec_gaze360.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/train/nitec_gaze360.csv -------------------------------------------------------------------------------- /data/annotations/train/nitec_helen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/train/nitec_helen.csv -------------------------------------------------------------------------------- /data/annotations/train/nitec_widerface.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/data/annotations/train/nitec_widerface.csv -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/dataset.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/demo.py -------------------------------------------------------------------------------- /nitec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/nitec/__init__.py -------------------------------------------------------------------------------- /nitec/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/nitec/classifier.py -------------------------------------------------------------------------------- /nitec/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/nitec/model.py -------------------------------------------------------------------------------- /nitec/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/nitec/results.py -------------------------------------------------------------------------------- /nitec/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/nitec/utils.py -------------------------------------------------------------------------------- /nitec/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/nitec/visualize.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thohemp/nitec/HEAD/train.py --------------------------------------------------------------------------------