this repo has no description
1[
2 {
3 "text": "Barack Obama visited Paris.",
4 "tokens": [
5 "Barack",
6 "Obama",
7 "visited",
8 "Paris",
9 "."
10 ],
11 "entities": [
12 {
13 "text": "Barack Obama",
14 "start": 0,
15 "end": 12,
16 "label": "PERSON"
17 },
18 {
19 "text": "Paris",
20 "start": 21,
21 "end": 26,
22 "label": "GPE"
23 }
24 ]
25 },
26 {
27 "text": "Apple Inc. is worth $2.5 trillion.",
28 "tokens": [
29 "Apple",
30 "Inc.",
31 "is",
32 "worth",
33 "$",
34 "2.5",
35 "trillion",
36 "."
37 ],
38 "entities": [
39 {
40 "text": "Apple Inc.",
41 "start": 0,
42 "end": 10,
43 "label": "ORG"
44 },
45 {
46 "text": "$2.5 trillion",
47 "start": 20,
48 "end": 33,
49 "label": "MONEY"
50 }
51 ]
52 },
53 {
54 "text": "The United States and China are trading partners.",
55 "tokens": [
56 "The",
57 "United",
58 "States",
59 "and",
60 "China",
61 "are",
62 "trading",
63 "partners",
64 "."
65 ],
66 "entities": [
67 {
68 "text": "The United States",
69 "start": 0,
70 "end": 17,
71 "label": "GPE"
72 },
73 {
74 "text": "China",
75 "start": 22,
76 "end": 27,
77 "label": "GPE"
78 }
79 ]
80 },
81 {
82 "text": "Elon Musk founded SpaceX and Tesla.",
83 "tokens": [
84 "Elon",
85 "Musk",
86 "founded",
87 "SpaceX",
88 "and",
89 "Tesla",
90 "."
91 ],
92 "entities": [
93 {
94 "text": "Elon Musk",
95 "start": 0,
96 "end": 9,
97 "label": "PERSON"
98 },
99 {
100 "text": "Tesla",
101 "start": 29,
102 "end": 34,
103 "label": "NORP"
104 }
105 ]
106 },
107 {
108 "text": "The World Cup was held in Qatar.",
109 "tokens": [
110 "The",
111 "World",
112 "Cup",
113 "was",
114 "held",
115 "in",
116 "Qatar",
117 "."
118 ],
119 "entities": [
120 {
121 "text": "The World Cup",
122 "start": 0,
123 "end": 13,
124 "label": "EVENT"
125 },
126 {
127 "text": "Qatar",
128 "start": 26,
129 "end": 31,
130 "label": "GPE"
131 }
132 ]
133 },
134 {
135 "text": "Microsoft acquired Activision for $68.7 billion.",
136 "tokens": [
137 "Microsoft",
138 "acquired",
139 "Activision",
140 "for",
141 "$",
142 "68.7",
143 "billion",
144 "."
145 ],
146 "entities": [
147 {
148 "text": "Microsoft",
149 "start": 0,
150 "end": 9,
151 "label": "ORG"
152 },
153 {
154 "text": "Activision",
155 "start": 19,
156 "end": 29,
157 "label": "ORG"
158 },
159 {
160 "text": "$68.7 billion",
161 "start": 34,
162 "end": 47,
163 "label": "MONEY"
164 }
165 ]
166 },
167 {
168 "text": "Taylor Swift performed at Madison Square Garden.",
169 "tokens": [
170 "Taylor",
171 "Swift",
172 "performed",
173 "at",
174 "Madison",
175 "Square",
176 "Garden",
177 "."
178 ],
179 "entities": [
180 {
181 "text": "Taylor Swift",
182 "start": 0,
183 "end": 12,
184 "label": "PERSON"
185 },
186 {
187 "text": "Madison Square Garden",
188 "start": 26,
189 "end": 47,
190 "label": "FAC"
191 }
192 ]
193 },
194 {
195 "text": "The European Union imposed sanctions on Russia.",
196 "tokens": [
197 "The",
198 "European",
199 "Union",
200 "imposed",
201 "sanctions",
202 "on",
203 "Russia",
204 "."
205 ],
206 "entities": [
207 {
208 "text": "The European Union",
209 "start": 0,
210 "end": 18,
211 "label": "ORG"
212 },
213 {
214 "text": "Russia",
215 "start": 40,
216 "end": 46,
217 "label": "GPE"
218 }
219 ]
220 },
221 {
222 "text": "Goldman Sachs reported quarterly earnings.",
223 "tokens": [
224 "Goldman",
225 "Sachs",
226 "reported",
227 "quarterly",
228 "earnings",
229 "."
230 ],
231 "entities": [
232 {
233 "text": "Goldman Sachs",
234 "start": 0,
235 "end": 13,
236 "label": "ORG"
237 },
238 {
239 "text": "quarterly",
240 "start": 23,
241 "end": 32,
242 "label": "DATE"
243 }
244 ]
245 },
246 {
247 "text": "NASA launched the Artemis mission.",
248 "tokens": [
249 "NASA",
250 "launched",
251 "the",
252 "Artemis",
253 "mission",
254 "."
255 ],
256 "entities": [
257 {
258 "text": "NASA",
259 "start": 0,
260 "end": 4,
261 "label": "ORG"
262 },
263 {
264 "text": "Artemis",
265 "start": 18,
266 "end": 25,
267 "label": "NORP"
268 }
269 ]
270 }
271]