├── .gitignore ├── LICENSE ├── README.md ├── data └── .gitkeep ├── data_loader.py ├── disp_multiple_images.py ├── eval.py ├── inference.ipynb ├── misc └── architecture.jpg ├── model.py ├── models └── .gitkeep ├── requirements.txt ├── resize.py ├── test.ipynb ├── train.py └── vist.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | *.json 4 | 5 | /data 6 | /models 7 | /.ipynb_checkpoints 8 | 9 | 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/data_loader.py -------------------------------------------------------------------------------- /disp_multiple_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/disp_multiple_images.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/eval.py -------------------------------------------------------------------------------- /inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/inference.ipynb -------------------------------------------------------------------------------- /misc/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/misc/architecture.jpg -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/model.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | nltk 3 | numpy 4 | Pillow 5 | argparse -------------------------------------------------------------------------------- /resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/resize.py -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/test.ipynb -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/train.py -------------------------------------------------------------------------------- /vist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkim-snu/GLACNet/HEAD/vist.py --------------------------------------------------------------------------------