├── .idea ├── .gitignore ├── VQA-Chinese-tf2.iml ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── GUI ├── __pycache__ │ ├── label_drag_img.cpython-37.pyc │ └── tab_main.cpython-37.pyc ├── icon.png ├── img_drop.png ├── img_face.png ├── label_drag_img.py └── tab_main.py ├── README.md ├── config.py ├── data_loader.py ├── extract_vgg_features.py ├── results ├── gui1.png ├── gui2.png └── model.png ├── run.py ├── train.py ├── utils ├── __pycache__ │ ├── langconv.cpython-37.pyc │ ├── tools.cpython-37.pyc │ └── zh_wiki.cpython-37.pyc ├── langconv.py ├── tools.py └── zh_wiki.py ├── vis_lstm_san.py ├── visual_model.ipynb └── win_main.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/VQA-Chinese-tf2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/.idea/VQA-Chinese-tf2.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /GUI/__pycache__/label_drag_img.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/__pycache__/label_drag_img.cpython-37.pyc -------------------------------------------------------------------------------- /GUI/__pycache__/tab_main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/__pycache__/tab_main.cpython-37.pyc -------------------------------------------------------------------------------- /GUI/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/icon.png -------------------------------------------------------------------------------- /GUI/img_drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/img_drop.png -------------------------------------------------------------------------------- /GUI/img_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/img_face.png -------------------------------------------------------------------------------- /GUI/label_drag_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/label_drag_img.py -------------------------------------------------------------------------------- /GUI/tab_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/GUI/tab_main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/config.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/data_loader.py -------------------------------------------------------------------------------- /extract_vgg_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/extract_vgg_features.py -------------------------------------------------------------------------------- /results/gui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/results/gui1.png -------------------------------------------------------------------------------- /results/gui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/results/gui2.png -------------------------------------------------------------------------------- /results/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/results/model.png -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/run.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/train.py -------------------------------------------------------------------------------- /utils/__pycache__/langconv.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/utils/__pycache__/langconv.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/tools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/utils/__pycache__/tools.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/zh_wiki.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/utils/__pycache__/zh_wiki.cpython-37.pyc -------------------------------------------------------------------------------- /utils/langconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/utils/langconv.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/utils/tools.py -------------------------------------------------------------------------------- /utils/zh_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/utils/zh_wiki.py -------------------------------------------------------------------------------- /vis_lstm_san.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/vis_lstm_san.py -------------------------------------------------------------------------------- /visual_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/visual_model.ipynb -------------------------------------------------------------------------------- /win_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muccul/VQA-Chinese-tf2/HEAD/win_main.py --------------------------------------------------------------------------------