├── .gitignore ├── LICENSE ├── README.md ├── cache └── .gitkeep ├── requirements.txt ├── setup.py ├── sim-gan.py └── utils ├── __init__.py ├── image_history_buffer.py └── mpii_gaze_dataset_organize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/README.md -------------------------------------------------------------------------------- /cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/setup.py -------------------------------------------------------------------------------- /sim-gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/sim-gan.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/image_history_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/utils/image_history_buffer.py -------------------------------------------------------------------------------- /utils/mpii_gaze_dataset_organize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjdietzx/SimGAN/HEAD/utils/mpii_gaze_dataset_organize.py --------------------------------------------------------------------------------