├── .gitignore ├── README.md ├── code ├── _init_paths.py ├── bert_main.py ├── cfg.json ├── dat_loader.py ├── model_vcr.py └── utils.py └── notebooks ├── VCR_Data_Visualization.ipynb ├── colormap.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.ipynb_checkpoints/ 2 | *__pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /code/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/code/_init_paths.py -------------------------------------------------------------------------------- /code/bert_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/code/bert_main.py -------------------------------------------------------------------------------- /code/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/code/cfg.json -------------------------------------------------------------------------------- /code/dat_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/code/dat_loader.py -------------------------------------------------------------------------------- /code/model_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/code/model_vcr.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/code/utils.py -------------------------------------------------------------------------------- /notebooks/VCR_Data_Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/notebooks/VCR_Data_Visualization.ipynb -------------------------------------------------------------------------------- /notebooks/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/notebooks/colormap.py -------------------------------------------------------------------------------- /notebooks/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/visual-commonsense-pytorch/HEAD/notebooks/visualizer.py --------------------------------------------------------------------------------