├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── data ├── __init__.py ├── data_processing.py └── dataset │ └── ALQAC.csv ├── images └── What is QA.png ├── models ├── __init__.py └── eqa_model.py ├── requirements.txt ├── train.py └── utils ├── __init__.py └── metrics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/config.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/data/data_processing.py -------------------------------------------------------------------------------- /data/dataset/ALQAC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/data/dataset/ALQAC.csv -------------------------------------------------------------------------------- /images/What is QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/images/What is QA.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/eqa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/models/eqa_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntphuc149/ViLQA/HEAD/utils/metrics.py --------------------------------------------------------------------------------