ngocson2002 commited on
Commit
b6277c4
·
verified ·
1 Parent(s): 84b50a5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -43,4 +43,20 @@ with torch.no_grad():
43
  idx = logits.argmax(-1).item()
44
 
45
  print("Predicted answer:", model.config.id2label[idx]) # prints: màu đỏ
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  ```
 
43
  idx = logits.argmax(-1).item()
44
 
45
  print("Predicted answer:", model.config.id2label[idx]) # prints: màu đỏ
46
+ ```
47
+ ## Citation
48
+ ```bibtex
49
+ @article{NGUYEN2024109474,
50
+ title = {Advancing Vietnamese Visual Question Answering with Transformer and Convolutional Integration},
51
+ journal = {Computers and Electrical Engineering},
52
+ volume = {119},
53
+ pages = {109474},
54
+ year = {2024},
55
+ issn = {0045-7906},
56
+ doi = {https://doi.org/10.1016/j.compeleceng.2024.109474},
57
+ url = {https://www.sciencedirect.com/science/article/pii/S0045790624004014},
58
+ author = {Ngoc Son Nguyen and Van Son Nguyen and Tung Le},
59
+ keywords = {Visual question answering, ViVQA, EfficientNet, BLIP-2, Convolutional},
60
+ abstract = {Visual Question Answering (VQA) has recently emerged as a potential research domain, captivating the interest of many in the field of artificial intelligence and computer vision. Despite the prevalence of approaches in English, there is a notable lack of systems specifically developed for certain languages, particularly Vietnamese. This study aims to bridge this gap by conducting comprehensive experiments on the Vietnamese Visual Question Answering (ViVQA) dataset, demonstrating the effectiveness of our proposed model. In response to community interest, we have developed a model that enhances image representation capabilities, thereby improving overall performance in the ViVQA system. Therefore, we propose AViVQA-TranConI (Advancing Vietnamese Visual Question Answering with Transformer and Convolutional Integration). AViVQA-TranConI integrates the Bootstrapping Language-Image Pre-training with frozen unimodal models (BLIP-2) and the convolutional neural network EfficientNet to extract and process both local and global features from images. This integration leverages the strengths of transformer-based architectures for capturing comprehensive contextual information and convolutional networks for detailed local features. By freezing the parameters of these pre-trained models, we significantly reduce the computational cost and training time, while maintaining high performance. This approach significantly improves image representation and enhances the performance of existing VQA systems. We then leverage a multi-modal fusion module based on a general-purpose multi-modal foundation model (BEiT-3) to fuse the information between visual and textual features. Our experimental findings demonstrate that AViVQA-TranConI surpasses competing baselines, achieving promising performance. This is particularly evident in its accuracy of 71.04% on the test set of the ViVQA dataset, marking a significant advancement in our research area. The code is available at https://github.com/nngocson2002/ViVQA.}
61
+ }
62
  ```