htc981 commited on
Commit
e097756
·
verified ·
1 Parent(s): 271e4e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -11
README.md CHANGED
@@ -13,20 +13,44 @@ This repository contains the `metadata`, `processed_data` and `papers` for the *
13
 
14
  **AirQA** is a human-annotated multi-modal multitask **A**rtificial **I**ntelligence **R**esearch **Q**uestion **A**nswering dataset, which encompasses 1,246 examples and 13,956 papers, aiming at evaluating an agent’s research capabilities in realistic scenarios. It is the first dataset that encompasses multiple question types, also the first to bring function-based evaluation into QA domain, enabling convenient and systematic assessment of research capabilities.
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ## 📂 Folder Structure
17
 
18
  ```txt
19
- metadata/
20
- |── a0008a3c-743d-5589-bea2-0f4aad710e50.json
21
- └── ... # more metadata dicts
22
- papers/
23
- |── acl2023/
24
- | |── 001ab93b-7665-5d56-a28e-eac95d2a9d7e.pdf
25
- | └── ... # more .pdf published in ACL 2023
26
- └── ... # other sub-folders of paper collections
27
- processed_data/
28
- |── a0008a3c-743d-5589-bea2-0f4aad710e50.json # cached data for PDF parsing
29
- └── ... # more cached data for PDFs
 
 
 
 
 
 
 
 
 
 
30
  ```
31
 
32
  Due to Hugging Face's limit on the number of files in a single folder, we packaged `metadata` and `processed_data` into archives.
 
13
 
14
  **AirQA** is a human-annotated multi-modal multitask **A**rtificial **I**ntelligence **R**esearch **Q**uestion **A**nswering dataset, which encompasses 1,246 examples and 13,956 papers, aiming at evaluating an agent’s research capabilities in realistic scenarios. It is the first dataset that encompasses multiple question types, also the first to bring function-based evaluation into QA domain, enabling convenient and systematic assessment of research capabilities.
15
 
16
+ ## 🔍 Quick Start
17
+
18
+ Load the AirQA dataset in one line using Hugging Face `datasets`:
19
+
20
+ ```py
21
+ from datasets import load_dataset
22
+
23
+ dataset = load_dataset("OpenDFM/AirQA")
24
+ ```
25
+
26
+ ⚠️ **Important Compatibility Note**: This dataset uses the legacy `scripts` feature from early `datasets` versions. Loading may require `datasets<4.0` or encounter limitations with newer library versions.
27
+
28
+ For complete usage guides, including data format and evaluation scripts, please refer to [our official repository](https://github.com/OpenDFM/AirQA).
29
+
30
  ## 📂 Folder Structure
31
 
32
  ```txt
33
+ AirQA
34
+ |── data/
35
+ | |── test_data.jsonl # main test dataset
36
+ | └── uuid2title.json # mapping from paper UUID to title
37
+ |── metadata/
38
+ | |── 000ab6db-4b65-5dc0-8393-fbc2c05843c8.json
39
+ | └── ... # more metadata dicts
40
+ |── papers/
41
+ | |── acl2016/
42
+ | | └── 16c3a7ad-d638-5ebf-a72a-bd58f06c16d7.pdf
43
+ | |── acl2019/
44
+ | | └── c7563d97-695f-5c77-8021-334bf2ff9ddb.pdf
45
+ | |── acl2023/
46
+ | | |── 001ab93b-7665-5d56-a28e-eac95d2a9d7e.pdf
47
+ | | └── ... # more .pdf published in ACL 2023
48
+ | └── ... # other sub-folders of paper collections
49
+ |── processed_data/
50
+ | |── 000ab6db-4b65-5dc0-8393-fbc2c05843c8.json # cached data for PDF parsing
51
+ | └── ... # more cached data for PDFs
52
+ |── AirQA.py
53
+ └── README.md
54
  ```
55
 
56
  Due to Hugging Face's limit on the number of files in a single folder, we packaged `metadata` and `processed_data` into archives.