Datasets:

Modalities:
Text
Formats:
json
Languages:
English
Size:
< 1K
Libraries:
Datasets
pandas
License:
jussikarlgren commited on
Commit
a0f3cb0
1 Parent(s): bf0590f

added config to README

Browse files
Files changed (1) hide show
  1. README.md +30 -3
README.md CHANGED
@@ -1,7 +1,34 @@
1
  ---
2
- license: cc-by-sa-4.0
3
  language:
4
  - en
5
- pretty_name: ELOQUENT Topical Quiz task items
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
- These datasets are the sample and test items for the Topical Competence task, which is part of the 2024 ELOQUENT lab. More information on the lab page at https://eloquent-lab.github.io/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-sa-4.0
3
  language:
4
  - en
5
+ configs:
6
+ - config_name: sample
7
+ data_files:
8
+ - split: sample
9
+ path: data/task1.sample.json
10
+ - config_name: test
11
+ data_files:
12
+ - split: test
13
+ path: data/task1.test.json
14
+ pretty_name: ELOQUENT Topical Competence Task
15
+ size_categories:
16
+ - n<1K
17
  ---
18
+ # Task 1: ELOQUENT Topical Competence Task
19
+ This dataset contains the sample and test datasets for the Topical Competence task, which is part of the 2024 ELOQUENT lab.
20
+
21
+ #### Sample Data
22
+
23
+ ```python
24
+ from datasets import load_dataset
25
+ data = load_dataset("Eloquent/TopicalQuiz", "sample")
26
+ ```
27
+
28
+ #### Test Data
29
+
30
+
31
+ ```python
32
+ from datasets import load_dataset
33
+ data = load_dataset("Eloquent/TopicalQuiz", "test")
34
+ ```