├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── create_fake_images.py ├── datasets.py ├── gazenet-ft.py ├── gazenet.py ├── gpcyclegan.py ├── infer.py ├── models.py ├── prepare_gaze_data.py ├── utils.py ├── visualize.py └── weights ├── squeezenet1_0_imagenet.pth └── squeezenet1_1_imagenet.pth /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/README.md -------------------------------------------------------------------------------- /create_fake_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/create_fake_images.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/datasets.py -------------------------------------------------------------------------------- /gazenet-ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/gazenet-ft.py -------------------------------------------------------------------------------- /gazenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/gazenet.py -------------------------------------------------------------------------------- /gpcyclegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/gpcyclegan.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/infer.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/models.py -------------------------------------------------------------------------------- /prepare_gaze_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/prepare_gaze_data.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/utils.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/visualize.py -------------------------------------------------------------------------------- /weights/squeezenet1_0_imagenet.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/weights/squeezenet1_0_imagenet.pth -------------------------------------------------------------------------------- /weights/squeezenet1_1_imagenet.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangesh/GPCycleGAN/HEAD/weights/squeezenet1_1_imagenet.pth --------------------------------------------------------------------------------