Add visual cues, citation, and requirements
Browse files- .gitattributes +1 -0
- CITATION.cff +34 -0
- requirements.txt +21 -0
- visual_cues/visual_cues.json +3 -0
.gitattributes
CHANGED
|
@@ -60,3 +60,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
data/train.csv filter=lfs diff=lfs merge=lfs -text
|
| 62 |
data/test.csv filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
data/train.csv filter=lfs diff=lfs merge=lfs -text
|
| 62 |
data/test.csv filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
visual_cues/visual_cues.json filter=lfs diff=lfs merge=lfs -text
|
CITATION.cff
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cff-version: 1.2.0
|
| 2 |
+
message: "If you use PlantInquiryVQA, please cite the paper."
|
| 3 |
+
title: "Thinking Like a Botanist: Challenging Multimodal Language Models with Intent-Driven Chain-of-Inquiry"
|
| 4 |
+
authors:
|
| 5 |
+
- family-names: Sakib
|
| 6 |
+
given-names: Syed Nazmus
|
| 7 |
+
affiliation: "Department of Robotics and Mechatronics Engineering, University of Dhaka"
|
| 8 |
+
- family-names: Haque
|
| 9 |
+
given-names: Nafiul
|
| 10 |
+
affiliation: "Department of Robotics and Mechatronics Engineering, University of Dhaka"
|
| 11 |
+
- family-names: Amin
|
| 12 |
+
given-names: Shahrear Bin
|
| 13 |
+
affiliation: "Department of Robotics and Mechatronics Engineering, University of Dhaka"
|
| 14 |
+
- family-names: Abdullah
|
| 15 |
+
given-names: Hasan Muhammad
|
| 16 |
+
affiliation: "Department of Agronomy, Bangabandhu Sheikh Mujibur Rahman Agricultural University"
|
| 17 |
+
- family-names: Hasan
|
| 18 |
+
given-names: Md Mehedi
|
| 19 |
+
affiliation: "Department of Robotics and Mechatronics Engineering, University of Dhaka"
|
| 20 |
+
- family-names: Hossain
|
| 21 |
+
given-names: Mohammad Zabed
|
| 22 |
+
affiliation: "Department of Botany, University of Dhaka"
|
| 23 |
+
- family-names: Arman
|
| 24 |
+
given-names: Shifat E.
|
| 25 |
+
affiliation: "Department of Robotics and Mechatronics Engineering, University of Dhaka"
|
| 26 |
+
year: 2026
|
| 27 |
+
conference:
|
| 28 |
+
name: "Findings of the Association for Computational Linguistics: ACL 2026"
|
| 29 |
+
keywords:
|
| 30 |
+
- "plant disease diagnosis"
|
| 31 |
+
- "visual question answering"
|
| 32 |
+
- "multi-turn VQA"
|
| 33 |
+
- "chain-of-inquiry"
|
| 34 |
+
- "multimodal benchmark"
|
requirements.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core
|
| 2 |
+
pandas>=2.0
|
| 3 |
+
numpy>=1.24
|
| 4 |
+
tqdm>=4.65
|
| 5 |
+
requests>=2.31
|
| 6 |
+
python-dotenv>=1.0
|
| 7 |
+
|
| 8 |
+
# Vision / image processing
|
| 9 |
+
opencv-python>=4.8
|
| 10 |
+
Pillow>=10.0
|
| 11 |
+
|
| 12 |
+
# Model providers
|
| 13 |
+
google-genai>=0.1.0
|
| 14 |
+
openai>=1.0
|
| 15 |
+
# OpenRouter uses the requests library directly (no SDK)
|
| 16 |
+
|
| 17 |
+
# NLP metrics
|
| 18 |
+
nltk>=3.8
|
| 19 |
+
rouge>=1.0.1
|
| 20 |
+
rouge-score>=0.1.2
|
| 21 |
+
sacrebleu>=2.3.0
|
visual_cues/visual_cues.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e12629d66135506e4373bb298f8b189b0410c823950d36879b25d554c30773ae
|
| 3 |
+
size 55198315
|