-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain_data.json
More file actions
185 lines (185 loc) · 4.83 KB
/
Copy pathtrain_data.json
File metadata and controls
185 lines (185 loc) · 4.83 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
[
{
"text": "John Doe lives in New York City and his phone number is 123-456-7890.",
"entities": [
[0, 8, "PERSON"],
[22, 34, "GPE"],
[44, 58, "PHONE"]
]
},
{
"text": "Apple Inc. announced the launch of their new product in San Francisco on January 10, 2025.",
"entities": [
[0, 10, "ORG"],
[57, 70, "GPE"],
[74, 88, "DATE"]
]
},
{
"text": "Jane Smith works at Microsoft and lives in Seattle.",
"entities": [
[0, 10, "PERSON"],
[22, 31, "ORG"],
[42, 49, "GPE"]
]
},
{
"text": "The Eiffel Tower is located in Paris, France.",
"entities": [
[4, 17, "LOCATION"],
[22, 27, "GPE"]
]
},
{
"text": "Barack Obama was born on August 4, 1961, in Honolulu.",
"entities": [
[0, 12, "PERSON"],
[20, 32, "DATE"],
[36, 44, "GPE"]
]
},
{
"text": "The event will take place at the White House, Washington on July 4th.",
"entities": [
[32, 43, "LOCATION"],
[45, 58, "GPE"],
[63, 74, "DATE"]
]
},
{
"text": "Elon Musk, CEO of SpaceX, is often seen in California.",
"entities": [
[0, 10, "PERSON"],
[12, 16, "ORG"],
[28, 37, "PERSON"],
[51, 60, "GPE"]
]
},
{
"text": "My phone number is 555-123-4567. Call me anytime.",
"entities": [
[18, 32, "PHONE"]
]
},
{
"text": "I visited Tokyo, Japan last week.",
"entities": [
[9, 14, "GPE"],
[16, 21, "GPE"]
]
},
{
"text": "On the 15th of September 2023, Microsoft made a major acquisition.",
"entities": [
[3, 15, "DATE"],
[17, 26, "ORG"]
]
},
{
"text": "Rihanna's latest album, Anti, was released in 2016.",
"entities": [
[0, 7, "PERSON"],
[28, 32, "DATE"]
]
},
{
"text": "The Great Wall of China is a popular tourist destination.",
"entities": [
[4, 21, "LOCATION"],
[27, 41, "GPE"]
]
},
{
"text": "Albert Einstein was a theoretical physicist born in Ulm, Germany.",
"entities": [
[0, 14, "PERSON"],
[43, 47, "GPE"],
[49, 56, "GPE"]
]
},
{
"text": "Google's headquarters are located in Mountain View, California.",
"entities": [
[0, 6, "ORG"],
[39, 56, "GPE"]
]
},
{
"text": "The concert is on Friday, December 10th at Madison Square Garden in New York.",
"entities": [
[28, 44, "DATE"],
[48, 70, "LOCATION"],
[74, 82, "GPE"]
]
},
{
"text": "Mark Zuckerberg announced the Facebook rebrand to Meta on October 28, 2021.",
"entities": [
[0, 13, "PERSON"],
[45, 51, "ORG"],
[55, 74, "DATE"]
]
},
{
"text": "The United Nations was established on 24th October 1945.",
"entities": [
[4, 19, "ORG"],
[40, 59, "DATE"]
]
},
{
"text": "James Cameron, the director of Titanic, was born in Kapuskasing, Ontario.",
"entities": [
[0, 12, "PERSON"],
[26, 33, "ORG"],
[55, 67, "GPE"],
[69, 76, "GPE"]
]
},
{
"text": "The COVID-19 pandemic started in 2019 and affected many countries, including Italy and Spain.",
"entities": [
[4, 11, "MISC"],
[26, 30, "DATE"],
[58, 63, "GPE"],
[68, 73, "GPE"]
]
},
{
"text": "Tesla's Model S was released in 2012.",
"entities": [
[0, 5, "ORG"],
[13, 19, "MISC"],
[31, 35, "DATE"]
]
},
{
"text": "Abraham Lincoln, the 16th President of the United States, was assassinated in Washington, D.C.",
"entities": [
[0, 15, "PERSON"],
[23, 25, "DATE"],
[64, 83, "GPE"]
]
},
{
"text": "Jennifer Lawrence starred in The Hunger Games and was born in Louisville, Kentucky.",
"entities": [
[0, 17, "PERSON"],
[46, 63, "ORG"],
[67, 76, "GPE"],
[78, 86, "GPE"]
]
},
{
"text": "The birth of the new child is scheduled for July 15, 2025.",
"entities": [
[49, 61, "DATE"]
]
},
{
"text": "The Grand Canyon is one of the seven natural wonders of the world.",
"entities": [
[4, 18, "LOCATION"]
]
}
]