-
Notifications
You must be signed in to change notification settings - Fork 4
/
croissant_metadata.json
110 lines (110 loc) · 3.1 KB
/
croissant_metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"@type": "sc:Dataset",
"name": "CiteME",
"description": "This dataset contains excerpts from academic papers, along with titles of papers cited in these excerpts.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"url": "N/A",
"distribution": [
{
"@type": "cr:FileObject",
"@id": "DATASET.csv",
"name": "DATASET.csv",
"contentUrl": "DATASET.csv",
"encodingFormat": "text/csv",
"sha256": "30a1f945f1ed0ad6192934fd914a70053397428f347e931901496a00194f1959"
}
],
"recordSet": [
{
"@type": "cr:RecordSet",
"name": "Citations",
"description": "Records of citations with their schema.",
"field": [
{
"@type": "cr:Field",
"name": "excerpt",
"description": "Text excerpt from the source paper.",
"dataType": "sc:Text",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "excerpt"
}
}
},
{
"@type": "cr:Field",
"name": "source_paper_title",
"description": "Title of the paper the excerpt came from.",
"dataType": "sc:Text",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "source_paper_title"
}
}
},
{
"@type": "cr:Field",
"name": "source_paper_url",
"description": "URL of the paper the excerpt came from.",
"dataType": "sc:URL",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "source_paper_url"
}
}
},
{
"@type": "cr:Field",
"name": "target_paper_title",
"description": "Title of the paper the excerpt cites.",
"dataType": "sc:Text",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "target_paper_title"
}
}
},
{
"@type": "cr:Field",
"name": "target_paper_url",
"description": "URL of the paper the excerpt cites.",
"dataType": "sc:URL",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "target_paper_url"
}
}
},
{
"@type": "cr:Field",
"name": "year",
"description": "Publish year of the source paper.",
"dataType": "sc:Integer",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "year"
}
}
},
{
"@type": "cr:Field",
"name": "split",
"description": "Dataset split (train or test).",
"dataType": "sc:Text",
"references": {
"fileObject": { "@id": "DATASET.csv" },
"extract": {
"column": "split"
}
}
}
]
}
]
}