KangKang625 commited on
Commit
1b48f16
·
verified ·
1 Parent(s): b536837

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -58
README.md CHANGED
@@ -1,58 +1,58 @@
1
- ---
2
- license: mit
3
- task_categories:
4
- - question-answering
5
- - text-classification
6
- - text-retrieval
7
- language:
8
- - en
9
- tags:
10
- - academic
11
- - questions
12
- - evidence
13
- - papers
14
- size_categories:
15
- - 1K<n<10K
16
- ---
17
-
18
- # ELA Bench Dataset
19
-
20
- ## Description
21
- This dataset contains academic questions with evidence passages extracted from research papers. Each question is paired with a relevant passage from the source paper that provides evidence for answering the question. This is a test dataset for evaluating question-answering systems on academic literature.
22
-
23
- ## Dataset Structure
24
- The dataset contains 403 test questions and corresponding paper content with the following structure:
25
-
26
- ### Questions
27
- - `paper_id`: ID of the source paper
28
- - `question_type`: Type of question (SA-MCQ, MA-MCQ, etc.)
29
- - `question`: The question text
30
- - `answer`: The correct answer
31
- - `relevant_passage`: Evidence passage extracted from the paper
32
-
33
- ### Papers
34
- - `paper_id`: Unique identifier for the paper
35
- - `content`: Full text content of the paper
36
-
37
- ## Usage
38
- ```python
39
- from datasets import load_dataset
40
-
41
- # Load the dataset
42
- dataset = load_dataset("KangKang625/ELAIPBench")
43
-
44
- # Access the data directly
45
- questions = dataset['questions']
46
- papers = dataset['papers']
47
-
48
- print(f"Number of questions: {len(questions)}")
49
- print(f"Number of papers: {len(papers)}")
50
- print(f"First question: {questions[0]['question']}")
51
-
52
- ```
53
-
54
- ## Citation
55
- If you use this dataset, please cite the original ELA Bench paper.
56
-
57
- ## License
58
- MIT License
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ - text-classification
6
+ - text-retrieval
7
+ language:
8
+ - en
9
+ tags:
10
+ - academic
11
+ - questions
12
+ - evidence
13
+ - papers
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+
18
+ # ELAIP Bench Dataset
19
+
20
+ ## Description
21
+ This dataset contains academic questions with evidence passages extracted from research papers. Each question is paired with a relevant passage from the source paper that provides evidence for answering the question. This is a test dataset for evaluating question-answering systems on academic literature.
22
+
23
+ ## Dataset Structure
24
+ The dataset contains 403 test questions and corresponding paper content with the following structure:
25
+
26
+ ### Questions
27
+ - `paper_id`: ID of the source paper
28
+ - `question_type`: Type of question (SA-MCQ, MA-MCQ, etc.)
29
+ - `question`: The question text
30
+ - `answer`: The correct answer
31
+ - `relevant_passage`: Evidence passage extracted from the paper
32
+
33
+ ### Papers
34
+ - `paper_id`: Unique identifier for the paper
35
+ - `content`: Full text content of the paper
36
+
37
+ ## Usage
38
+ ```python
39
+ from datasets import load_dataset
40
+
41
+ # Load the dataset
42
+ dataset = load_dataset("KangKang625/ELAIPBench")
43
+
44
+ # Access the data directly
45
+ questions = dataset['questions']
46
+ papers = dataset['papers']
47
+
48
+ print(f"Number of questions: {len(questions)}")
49
+ print(f"Number of papers: {len(papers)}")
50
+ print(f"First question: {questions[0]['question']}")
51
+
52
+ ```
53
+
54
+ ## Citation
55
+ If you use this dataset, please cite the original ELA Bench paper.
56
+
57
+ ## License
58
+ MIT License