Yueqing Liang commited on
Commit
3cf2e43
·
1 Parent(s): 9e3f4ff

Fix dataset_infos.json with valid schema

Browse files
Files changed (1) hide show
  1. dataset_infos.json +33 -21
dataset_infos.json CHANGED
@@ -2,42 +2,54 @@
2
  "task1": {
3
  "description": "Coauthor selection for UN draft resolutions",
4
  "features": {
5
- "folder_id": "int64",
6
- "author": "string",
7
- "coauthor": "string",
8
- "date": "string",
9
- "choices_2": ["string"],
10
- "choices_3": ["string"],
11
- "choices_4": ["string"],
12
- "choices_5": ["string"]
 
 
 
 
 
 
 
 
 
 
 
 
13
  }
14
  },
15
  "task2": {
16
  "description": "Simulated country votes on UN draft resolutions",
17
  "features": {
18
- "Country": "string",
19
- "Original_id": "int64",
20
- "Authors": "string",
21
- "Voting": "string",
22
- "Date": "string"
23
  }
24
  },
25
  "task3": {
26
  "description": "Predict adoption outcome (adopted or not) of UN draft resolutions",
27
  "features": {
28
- "drafts": "string",
29
- "labels": "int64"
30
  }
31
  },
32
  "task4": {
33
  "description": "Generate representative country statements on UN draft resolutions",
34
  "features": {
35
- "Date": "string",
36
- "ID": "string",
37
- "Title": "string",
38
- "Authors": "string",
39
- "Content": "string",
40
- "Statements": "string"
41
  }
42
  }
43
  }
 
2
  "task1": {
3
  "description": "Coauthor selection for UN draft resolutions",
4
  "features": {
5
+ "folder_id": { "_type": "Value", "dtype": "int64" },
6
+ "author": { "_type": "Value", "dtype": "string" },
7
+ "coauthor": { "_type": "Value", "dtype": "string" },
8
+ "date": { "_type": "Value", "dtype": "string" },
9
+ "choices_2": {
10
+ "_type": "Sequence",
11
+ "feature": { "_type": "Value", "dtype": "string" }
12
+ },
13
+ "choices_3": {
14
+ "_type": "Sequence",
15
+ "feature": { "_type": "Value", "dtype": "string" }
16
+ },
17
+ "choices_4": {
18
+ "_type": "Sequence",
19
+ "feature": { "_type": "Value", "dtype": "string" }
20
+ },
21
+ "choices_5": {
22
+ "_type": "Sequence",
23
+ "feature": { "_type": "Value", "dtype": "string" }
24
+ }
25
  }
26
  },
27
  "task2": {
28
  "description": "Simulated country votes on UN draft resolutions",
29
  "features": {
30
+ "Country": { "_type": "Value", "dtype": "string" },
31
+ "Original_id": { "_type": "Value", "dtype": "int64" },
32
+ "Authors": { "_type": "Value", "dtype": "string" },
33
+ "Voting": { "_type": "Value", "dtype": "string" },
34
+ "Date": { "_type": "Value", "dtype": "string" }
35
  }
36
  },
37
  "task3": {
38
  "description": "Predict adoption outcome (adopted or not) of UN draft resolutions",
39
  "features": {
40
+ "drafts": { "_type": "Value", "dtype": "string" },
41
+ "labels": { "_type": "Value", "dtype": "int64" }
42
  }
43
  },
44
  "task4": {
45
  "description": "Generate representative country statements on UN draft resolutions",
46
  "features": {
47
+ "Date": { "_type": "Value", "dtype": "string" },
48
+ "ID": { "_type": "Value", "dtype": "string" },
49
+ "Title": { "_type": "Value", "dtype": "string" },
50
+ "Authors": { "_type": "Value", "dtype": "string" },
51
+ "Content": { "_type": "Value", "dtype": "string" },
52
+ "Statements": { "_type": "Value", "dtype": "string" }
53
  }
54
  }
55
  }