pszemraj commited on
Commit
627904d
1 Parent(s): 70c8a3f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -1
README.md CHANGED
@@ -33,4 +33,26 @@ Each data file ({train/dev/test}.jsonl) is formatted as a JSON lines file. Each
33
  questions: a list of questions and accompanying responses
34
  - question text
35
  - question number: the order in which that question was answered by the writers
36
- - responses: list of worker's response, where each response is a dictionary containing the (anonymized) worker ID, an internal UID, and their response to the question
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  questions: a list of questions and accompanying responses
34
  - question text
35
  - question number: the order in which that question was answered by the writers
36
+ - responses: list of worker's response, where each response is a dictionary containing the (anonymized) worker ID, an internal UID, and their response to the question
37
+
38
+
39
+ ### dataset contents
40
+
41
+
42
+ ```python
43
+ DatasetDict({
44
+ train: Dataset({
45
+ features: ['metadata', 'document', 'questions'],
46
+ num_rows: 50
47
+ })
48
+ test: Dataset({
49
+ features: ['metadata', 'document', 'questions'],
50
+ num_rows: 52
51
+ })
52
+ validation: Dataset({
53
+ features: ['metadata', 'document', 'questions'],
54
+ num_rows: 25
55
+ })
56
+ })
57
+ ```
58
+