├── .gitignore ├── LICENSE ├── README.md ├── datasets └── README.md ├── demo.py ├── l2cs ├── __init__.py ├── datasets.py ├── model.py ├── pipeline.py ├── results.py ├── utils.py └── vis.py ├── leave_one_out_eval.py ├── models └── README.md ├── pyproject.toml ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/README.md -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- 1 | # Path to gaze360 and MPIIGaze datasets 2 | -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/demo.py -------------------------------------------------------------------------------- /l2cs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/__init__.py -------------------------------------------------------------------------------- /l2cs/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/datasets.py -------------------------------------------------------------------------------- /l2cs/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/model.py -------------------------------------------------------------------------------- /l2cs/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/pipeline.py -------------------------------------------------------------------------------- /l2cs/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/results.py -------------------------------------------------------------------------------- /l2cs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/utils.py -------------------------------------------------------------------------------- /l2cs/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/l2cs/vis.py -------------------------------------------------------------------------------- /leave_one_out_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/leave_one_out_eval.py -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- 1 | # Path to pre-trained models 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmednull/L2CS-Net/HEAD/train.py --------------------------------------------------------------------------------