manandey commited on
Commit
4949de2
1 Parent(s): fdf971e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The dataset is in the form of a json lines file with 10,657 examples, where an example consists of text (extracted from the first 13,000 rows of OSCAR unshuffled English dataset) and metadata fields (entities).
2
+
3
+ Structure of an example.
4
+
5
+ ```
6
+ {
7
+ "text": "This is exactly the sort of article to raise the profile of the club around the Midlands. Very positive and really focusses on how the club has improved over a short period of time and the bright prospects for the future \n\"Oxford Town\" - professional as always at the Birmingham Mail. Not only is Oxford a city, but Oxford United are pretty recognisable name to anyone who has ever taken even a vague interest in English football.",
8
+ "metadata": [
9
+ {
10
+ "key": "entity",
11
+ "type": "local",
12
+ "char_start_idx": 80,
13
+ "char_end_idx": 88,
14
+ "value": "Midlands"
15
+ },
16
+ {
17
+ "key": "entity",
18
+ "type": "local",
19
+ "char_start_idx": 225,
20
+ "char_end_idx": 236,
21
+ "value": "Oxford Town"
22
+ },
23
+ {
24
+ "key": "entity",
25
+ "type": "local",
26
+ "char_start_idx": 270,
27
+ "char_end_idx": 285,
28
+ "value": "Birmingham_Mail"
29
+ },
30
+ {
31
+ "key": "entity",
32
+ "type": "local",
33
+ "char_start_idx": 299,
34
+ "char_end_idx": 305,
35
+ "value": "Oxford"
36
+ },
37
+ {
38
+ "key": "entity",
39
+ "type": "local",
40
+ "char_start_idx": 318,
41
+ "char_end_idx": 331,
42
+ "value": "Oxford_United_Stars_F.C."
43
+ },
44
+ {
45
+ "key": "entity",
46
+ "type": "local",
47
+ "char_start_idx": 415,
48
+ "char_end_idx": 422,
49
+ "value": "England"
50
+ }
51
+ ]
52
+ }
53
+ ```