Datasets:
Tasks:
Token Classification
Modalities:
Text
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
10K - 100K
ArXiv:
new-datasets-library
#1
by
miguelmrebocho
- opened
- cross_ner.py → code/legacy/cross_ner.py +0 -0
- code/new-dataset-format.ipynb +91 -0
- data/ai/test.json +0 -0
- data/ai/train.json +100 -0
- data/ai/validation.json +0 -0
- data/conll2003/test.json +0 -0
- data/conll2003/train.json +0 -0
- data/conll2003/validation.json +0 -0
- data/literature/test.json +0 -0
- data/literature/train.json +100 -0
- data/literature/validation.json +0 -0
- data/music/test.json +0 -0
- data/music/train.json +100 -0
- data/music/validation.json +0 -0
- data/politics/test.json +0 -0
- data/politics/train.json +0 -0
- data/politics/validation.json +0 -0
- data/science/test.json +0 -0
- data/science/train.json +0 -0
- data/science/validation.json +0 -0
cross_ner.py → code/legacy/cross_ner.py
RENAMED
|
File without changes
|
code/new-dataset-format.ipynb
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cells": [
|
| 3 |
+
{
|
| 4 |
+
"cell_type": "code",
|
| 5 |
+
"execution_count": null,
|
| 6 |
+
"id": "6aa5fb66",
|
| 7 |
+
"metadata": {},
|
| 8 |
+
"outputs": [],
|
| 9 |
+
"source": [
|
| 10 |
+
"import os\n",
|
| 11 |
+
"import requests"
|
| 12 |
+
]
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"cell_type": "code",
|
| 16 |
+
"execution_count": null,
|
| 17 |
+
"id": "445679f5",
|
| 18 |
+
"metadata": {},
|
| 19 |
+
"outputs": [],
|
| 20 |
+
"source": [
|
| 21 |
+
"def convert_txt_to_jsonl(base_url, domain):\n",
|
| 22 |
+
" \n",
|
| 23 |
+
" urls = {\n",
|
| 24 |
+
" \"train\": f\"{base_url}/{domain}/train.txt\",\n",
|
| 25 |
+
" \"validation\": f\"{base_url}/{domain}/dev.txt\",\n",
|
| 26 |
+
" \"test\": f\"{base_url}/{domain}/test.txt\",\n",
|
| 27 |
+
" }\n",
|
| 28 |
+
"\n",
|
| 29 |
+
" os.makedirs(domain, exist_ok=True)\n",
|
| 30 |
+
"\n",
|
| 31 |
+
" for split, url in urls.items():\n",
|
| 32 |
+
" text = requests.get(url).text.strip().splitlines()\n",
|
| 33 |
+
" samples, tokens, tags = [], [], []\n",
|
| 34 |
+
" guid = 0\n",
|
| 35 |
+
"\n",
|
| 36 |
+
" for line in text:\n",
|
| 37 |
+
" if not line.strip():\n",
|
| 38 |
+
" if tokens:\n",
|
| 39 |
+
" samples.append({\"id\": str(guid), \"tokens\": tokens, \"ner_tags\": tags})\n",
|
| 40 |
+
" guid += 1\n",
|
| 41 |
+
" tokens, tags = [], []\n",
|
| 42 |
+
" else:\n",
|
| 43 |
+
" token, tag = line.split(\"\\t\")\n",
|
| 44 |
+
" tokens.append(token)\n",
|
| 45 |
+
" tags.append(tag)\n",
|
| 46 |
+
" \n",
|
| 47 |
+
" if tokens:\n",
|
| 48 |
+
" samples.append({\"id\": str(guid), \"tokens\": tokens, \"ner_tags\": tags})\n",
|
| 49 |
+
"\n",
|
| 50 |
+
" with open(f\"{domain}/{split}.json\", \"w\", encoding=\"utf-8\") as f:\n",
|
| 51 |
+
" for s in samples:\n",
|
| 52 |
+
" f.write(f\"{s}\\n\")"
|
| 53 |
+
]
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"cell_type": "code",
|
| 57 |
+
"execution_count": null,
|
| 58 |
+
"id": "739fc387",
|
| 59 |
+
"metadata": {},
|
| 60 |
+
"outputs": [],
|
| 61 |
+
"source": [
|
| 62 |
+
"domains = [\"conll2003\", \"politics\", \"science\", \"music\", \"literature\", \"ai\"]\n",
|
| 63 |
+
"base_url = \"https://raw.githubusercontent.com/zliucr/CrossNER/main/ner_data\"\n",
|
| 64 |
+
"\n",
|
| 65 |
+
"for domain in domains:\n",
|
| 66 |
+
" convert_txt_to_jsonl(domain)"
|
| 67 |
+
]
|
| 68 |
+
}
|
| 69 |
+
],
|
| 70 |
+
"metadata": {
|
| 71 |
+
"kernelspec": {
|
| 72 |
+
"display_name": "Python 3",
|
| 73 |
+
"language": "python",
|
| 74 |
+
"name": "python3"
|
| 75 |
+
},
|
| 76 |
+
"language_info": {
|
| 77 |
+
"codemirror_mode": {
|
| 78 |
+
"name": "ipython",
|
| 79 |
+
"version": 3
|
| 80 |
+
},
|
| 81 |
+
"file_extension": ".py",
|
| 82 |
+
"mimetype": "text/x-python",
|
| 83 |
+
"name": "python",
|
| 84 |
+
"nbconvert_exporter": "python",
|
| 85 |
+
"pygments_lexer": "ipython3",
|
| 86 |
+
"version": "3.10.11"
|
| 87 |
+
}
|
| 88 |
+
},
|
| 89 |
+
"nbformat": 4,
|
| 90 |
+
"nbformat_minor": 5
|
| 91 |
+
}
|
data/ai/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/ai/train.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{'id': '0', 'tokens': ['Popular', 'approaches', 'of', 'opinion-based', 'recommender', 'system', 'utilize', 'various', 'techniques', 'including', 'text', 'mining', ',', 'information', 'retrieval', ',', 'sentiment', 'analysis', '(', 'see', 'also', 'Multimodal', 'sentiment', 'analysis', ')', 'and', 'deep', 'learning', 'X.Y.', 'Feng', ',', 'H.', 'Zhang', ',', 'Y.J.', 'Ren', ',', 'P.H.', 'Shang', ',', 'Y.', 'Zhu', ',', 'Y.C.', 'Liang', ',', 'R.C.', 'Guan', ',', 'D.', 'Xu', ',', '(', '2019', ')', ',', ',', '21', '(', '5', ')', ':', 'e12957', '.'], 'ner_tags': ['O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'B-task', 'I-task', 'I-task', 'O', 'O', 'B-field', 'I-field', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 2 |
+
{'id': '1', 'tokens': ['Advocates', 'of', 'procedural', 'representations', 'were', 'mainly', 'centered', 'at', 'MIT', ',', 'under', 'the', 'leadership', 'of', 'Marvin', 'Minsky', 'and', 'Seymour', 'Papert', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-university', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O']}
|
| 3 |
+
{'id': '2', 'tokens': ['The', 'standard', 'interface', 'and', 'calculator', 'interface', 'are', 'written', 'in', 'Java', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O']}
|
| 4 |
+
{'id': '3', 'tokens': ['Octave', 'helps', 'in', 'solving', 'linear', 'and', 'nonlinear', 'problems', 'numerically', ',', 'and', 'for', 'performing', 'other', 'numerical', 'experiments', 'using', 'a', 'that', 'is', 'mostly', 'compatible', 'with', 'MATLAB', '.'], 'ner_tags': ['B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'O']}
|
| 5 |
+
{'id': '4', 'tokens': ['Variants', 'of', 'the', 'back-propagation', 'algorithm', 'as', 'well', 'as', 'unsupervised', 'methods', 'by', 'Geoff', 'Hinton', 'and', 'colleagues', 'at', 'the', 'University', 'of', 'Toronto', 'can', 'be', 'used', 'to', 'train', 'deep', ',', 'highly', 'nonlinear', 'neural', 'architectures', ',', '{', '{', 'cite', 'journal'], 'ner_tags': ['O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 6 |
+
{'id': '5', 'tokens': ['or', 'equivalently', 'using', 'DCG', 'notation', ':'], 'ner_tags': ['O', 'O', 'O', 'B-metrics', 'O', 'O']}
|
| 7 |
+
{'id': '6', 'tokens': ['Self-organizing', 'maps', 'differ', 'from', 'other', 'artificial', 'neural', 'networks', 'as', 'they', 'apply', 'competitive', 'learning', 'as', 'opposed', 'to', 'error-correction', 'learning', 'such', 'as', 'backpropagation', 'with', 'gradient', 'descent', ')', ',', 'and', 'in', 'the', 'sense', 'that', 'they', 'use', 'a', 'neighborhood', 'function', 'to', 'preserve', 'the', 'topological', 'properties', 'of', 'the', 'input', 'space', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O']}
|
| 8 |
+
{'id': '7', 'tokens': ['Since', 'the', 'early', '1990s', ',', 'it', 'has', 'been', 'recommended', 'by', 'several', 'authorities', ',', 'including', 'the', 'Audio', 'Engineering', 'Society', 'that', 'measurements', 'of', 'dynamic', 'range', 'be', 'made', 'with', 'an', 'audio', 'signal', 'present', ',', 'which', 'is', 'then', 'filtered', 'out', 'in', 'the', 'noise', 'floor', 'measurement', 'used', 'in', 'determining', 'dynamic', 'range', '.', 'This', 'avoids', 'questionable', 'measurements', 'based', 'on', 'the', 'use', 'of', 'blank', 'media', ',', 'or', 'muting', 'circuits', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 9 |
+
{'id': '8', 'tokens': ['The', 'technique', 'used', 'in', 'creating', 'eigenfaces', 'and', 'using', 'them', 'for', 'recognition', 'is', 'also', 'used', 'outside', 'of', 'face', 'recognition', ':', 'handwriting', 'recognition', ',', 'lip', 'reading', ',', 'voice', 'recognition', ',', 'sign', 'language', '/', 'hand', 'gestures', 'interpretation', 'and', 'medical', 'imaging', 'analysis', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'I-task', 'O', 'B-field', 'I-field', 'I-field', 'O']}
|
| 10 |
+
{'id': '9', 'tokens': ['The', 'National', 'Science', 'Foundation', 'was', 'an', 'umbrella', 'for', 'the', 'National', 'Aeronautics', 'and', 'Space', 'Administration', '(', 'NASA', ')', ',', 'the', 'US', 'Department', 'of', 'Energy', ',', 'the', 'US', 'Department', 'of', 'Commerce', 'NIST', ',', 'the', 'US', 'Department', 'of', 'Defense', ',', 'Defense', 'Advanced', 'Research', 'Projects', 'Agency', '(', 'DARPA', ')', ',', 'and', 'the', 'Office', 'of', 'Naval', 'Research', 'coordinated', 'studies', 'to', 'inform', 'strategic', 'planners', 'in', 'their', 'deliberations', '.'], 'ner_tags': ['O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 11 |
+
{'id': '10', 'tokens': ['A', 'fast', 'method', 'for', 'computing', 'maximum', 'likelihood', 'estimates', 'for', 'the', 'probit', 'model', 'was', 'proposed', 'by', 'Ronald', 'Fisher', 'as', 'an', 'appendix', 'to', 'Bliss', "'", 'work', 'in', '1935', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'B-researcher', 'O', 'O', 'O', 'O', 'O']}
|
| 12 |
+
{'id': '11', 'tokens': ['Several', 'of', 'these', 'programs', 'are', 'available', 'online', ',', 'such', 'as', 'Google', 'Translate', 'and', 'the', 'SYSTRAN', 'system', 'that', 'powers', 'AltaVista', "'s", 'BabelFish', '(', 'now', 'Yahoo', "'s", 'Babelfish', 'as', 'of', '9', 'May', '2008', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'B-organisation', 'O', 'B-product', 'O', 'O', 'B-organisation', 'O', 'B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 13 |
+
{'id': '12', 'tokens': ['In', '2002', 'Hutter', ',', 'with', 'Jürgen', 'Schmidhuber', 'and', 'Shane', 'Legg', ',', 'developed', 'and', 'published', 'a', 'mathematical', 'theory', 'of', 'artificial', 'general', 'intelligence', 'based', 'on', 'idealised', 'intelligent', 'agents', 'and', 'reward-motivated', 'reinforcement', 'learning', '.'], 'ner_tags': ['O', 'O', 'B-researcher', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'I-field', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-field', 'I-field', 'O']}
|
| 14 |
+
{'id': '13', 'tokens': ['The', 'most', 'common', 'way', 'is', 'using', 'the', 'so-called', 'ROUGE', '(', 'Recall-Oriented', 'Understudy', 'for', 'Gisting', 'Evaluation', ')', 'measure', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O']}
|
| 15 |
+
{'id': '14', 'tokens': ['RapidMiner', 'provides', 'learning', 'schemes', ',', 'models', 'and', 'algorithms', 'and', 'can', 'be', 'extended', 'using', 'R', 'and', 'Python', 'scripts', '.', 'David', 'Norris', ',', 'Bloor', 'Research', ',', 'November', '13', ',', '2013', '.'], 'ner_tags': ['B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'B-programlang', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 16 |
+
{'id': '15', 'tokens': ['tity', 'contains', 'a', 'collection', 'of', 'visualization', 'tools', 'and', 'algorithms', 'for', 'data', 'analysis', 'and', 'predictive', 'modeling', ',', 'together', 'with', 'graphical', 'user', 'interfaces', 'for', 'easy', 'access', 'to', 'these', 'functions.', 'but', 'the', 'more', 'recent', 'fully', 'Java', '-based', 'version', '(', 'Weka', '3', ')', ',', 'for', 'which', 'development', 'started', 'in', '1997', ',', 'is', 'now', 'used', 'in', 'many', 'different', 'application', 'areas', ',', 'in', 'particular', 'for', 'educational', 'purposes', 'and', 'research', '.'], 'ner_tags': ['B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 17 |
+
{'id': '16', 'tokens': ['Eurisko', 'made', 'many', 'interesting', 'discoveries', 'and', 'enjoyed', 'significant', 'acclaim', ',', 'with', 'his', 'paper', 'Heuretics', ':', 'Theoretical', 'and', 'Study', 'of', 'Heuristic', 'Rules', 'winning', 'the', 'Best', 'Paper', 'award', 'at', 'the', '1982', 'Association', 'for', 'the', 'Advancement', 'of', 'Artificial', 'Intelligence', '.'], 'ner_tags': ['B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O']}
|
| 18 |
+
{'id': '17', 'tokens': ['To', 'allow', 'for', 'multiple', 'entities', ',', 'a', 'separate', 'Hinge', 'loss', 'is', 'computed', 'for', 'each', 'capsule', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 19 |
+
{'id': '18', 'tokens': ['With', 'the', 'emergence', 'of', 'conversational', 'assistants', 'such', 'as', 'Apple', "'s", 'Siri', ',', 'Amazon', 'Alexa', ',', 'Google', 'Assistant', ',', 'Microsoft', 'Cortana', ',', 'and', 'Samsung', "'s", 'Bixby', ',', 'Voice', 'Portals', 'can', 'now', 'be', 'accessed', 'through', 'mobile', 'devices', 'and', 'Far', 'Field', 'voice', 'smart', 'speakers', 'such', 'as', 'the', 'Amazon', 'Echo', 'and', 'Google', 'Home', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'O', 'B-product', 'I-product', 'O', 'B-product', 'I-product', 'O', 'B-product', 'I-product', 'O', 'O', 'B-product', 'I-product', 'I-product', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'I-product', 'I-product', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'B-product', 'I-product', 'O']}
|
| 20 |
+
{'id': '19', 'tokens': ['Examples', 'of', 'supervised', 'learning', 'are', 'Naive', 'Bayes', 'classifier', ',', 'Support', 'vector', 'machine', ',', 'mixtures', 'of', 'Gaussians', ',', 'and', 'network', '.'], 'ner_tags': ['O', 'O', 'B-field', 'I-field', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'O']}
|
| 21 |
+
{'id': '20', 'tokens': ['One', 'can', 'use', 'the', 'OSD', 'algorithm', 'to', 'derive', 'math', 'O', '(', '\\', 'sqrt', '{', 'T', '}', ')', '/', 'math', 'regret', 'bounds', 'for', 'the', 'online', 'version', 'of', 'Support', 'vector', 'machine', 'for', 'classification', ',', 'which', 'use', 'the', 'hinge', 'loss', 'math', 'v', '_', 't', '(', 'w', ')', '=', '\\', 'max', '\\', '{', '0', ',', '1', '-', 'y', '_', 't', '(', 'w', '\\', 'cdot', 'x', '_', 't', ')', '\\', '}', '/', 'math'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-task', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 22 |
+
{'id': '21', 'tokens': ['Applications', 'include', 'object', 'recognition', ',', 'robotic', 'mapping', 'and', 'navigation', ',', 'image', 'stitching', ',', '3D', 'modeling', ',', 'gesture', 'recognition', ',', 'video', 'tracking', ',', 'individual', 'identification', 'of', 'wildlife', 'and', 'match', 'moving', '.'], 'ner_tags': ['O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'I-task', 'I-task', 'O', 'B-task', 'I-task', 'O']}
|
| 23 |
+
{'id': '22', 'tokens': ['A', 'number', 'of', 'groups', 'and', 'companies', 'are', 'researching', 'pose', 'estimation', ',', 'including', 'groups', 'at', 'Brown', 'University', ',', 'Carnegie', 'Mellon', 'University', ',', 'MPI', 'Saarbruecken', ',', 'Stanford', 'University', ',', 'the', 'University', 'of', 'California', ',', 'San', 'Diego', ',', 'the', 'University', 'of', 'Toronto', ',', 'the', 'École', 'Centrale', 'Paris', ',', 'ETH', 'Zurich', ',', 'National', 'University', 'of', 'Sciences', 'and', 'Technology', '(', 'NUST', ')', ',', 'and', 'the', 'University', 'of', 'California', ',', 'Irvine', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'B-university', 'I-university', 'O', 'B-university', 'I-university', 'I-university', 'O', 'B-university', 'I-university', 'O', 'B-university', 'I-university', 'O', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'I-university', 'I-university', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'B-university', 'I-university', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'I-university', 'I-university', 'O', 'B-university', 'O', 'O', 'O', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'I-university', 'O']}
|
| 24 |
+
{'id': '23', 'tokens': ['Sigmoid', 'function', 'Cross', 'entropy', 'loss', 'is', 'used', 'for', 'predicting', 'K', 'independent', 'probability', 'values', 'in', 'math', '0,1', '/', 'math', '.'], 'ner_tags': ['B-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 25 |
+
{'id': '24', 'tokens': ['He', 'held', 'the', 'Johann', 'Bernoulli', 'Chair', 'of', 'Mathematics', 'and', 'Informatics', 'at', 'the', 'University', 'of', 'Groningen', 'in', 'the', 'Netherlands', ',', 'and', 'the', 'Toshiba', 'Endowed', 'Chair', 'at', 'the', 'Tokyo', 'Institute', 'of', 'Technology', 'in', 'Japan', 'before', 'becoming', 'Professor', 'at', 'Cambridge', '.'], 'ner_tags': ['O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'B-field', 'O', 'B-field', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'O', 'B-country', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'O', 'B-country', 'O', 'O', 'O', 'O', 'B-university', 'O']}
|
| 26 |
+
{'id': '25', 'tokens': ['Another', 'technique', 'particularly', 'used', 'for', 'recurrent', 'neural', 'network', 's', 'is', 'the', 'long', 'short-term', 'memory', '(', 'LSTM', ')', 'network', 'of', '1997', 'by', 'Sepp', 'Hochreiter', '&', 'Jürgen', 'Schmidhuber', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O']}
|
| 27 |
+
{'id': '26', 'tokens': ['The', 'inclusion', 'of', 'a', 'C', '+', '+', 'interpreter', '(', 'CINT', 'until', 'version', '5.34', ',', 'Cling', 'from', 'version', '6', ')', 'makes', 'this', 'package', 'very', 'versatile', 'as', 'it', 'can', 'be', 'used', 'in', 'interactive', ',', 'scripted', 'and', 'compiled', 'modes', 'in', 'a', 'manner', 'similar', 'to', 'commercial', 'products', 'like', 'MATLAB', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-programlang', 'I-programlang', 'I-programlang', 'O', 'O', 'B-product', 'O', 'O', 'O', 'O', 'B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'O']}
|
| 28 |
+
{'id': '27', 'tokens': ['Voice', 'user', 'interfaces', 'that', 'interpret', 'and', 'manage', 'conversational', 'state', 'are', 'challenging', 'to', 'design', 'due', 'to', 'the', 'inherent', 'difficulty', 'of', 'integrating', 'complex', 'natural', 'language', 'processing', 'tasks', 'like', 'coreference', 'resolution', ',', 'named-entity', 'recognition', ',', 'information', 'retrieval', ',', 'and', 'dialog', 'management', '.'], 'ner_tags': ['B-product', 'I-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'I-field', 'O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'B-task', 'I-task', 'O']}
|
| 29 |
+
{'id': '28', 'tokens': ['Between', '2009', 'and', '2012', ',', 'the', 'recurrent', 'neural', 'network', 's', 'and', 'deep', 'feedforward', 'neural', 'network', 's', 'developed', 'in', 'the', 'research', 'group', 'of', 'Jürgen', 'Schmidhuber', 'at', 'the', 'Swiss', 'AI', 'Lab', 'IDSIA', 'have', 'won', 'eight', 'international', 'competitions', 'in', 'pattern', 'recognition', 'and', 'machine', 'learning', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-field', 'I-field', 'O']}
|
| 30 |
+
{'id': '29', 'tokens': ['Modern', 'Windows', 'desktop', 'systems', 'can', 'use', 'SAPI', '4', 'and', 'SAPI', '5', 'components', 'to', 'support', 'speech', 'synthesis', 'and', 'speech', '.'], 'ner_tags': ['O', 'B-product', 'I-product', 'I-product', 'O', 'O', 'B-product', 'I-product', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'O']}
|
| 31 |
+
{'id': '30', 'tokens': ['He', 'received', 'two', 'honorary', 'degree', 's', ',', 'one', 'S.', 'V.', 'della', 'laurea', 'ad', 'honorem', 'in', 'Psychology', 'from', 'the', 'University', 'of', 'Padua', 'in', '1995', 'and', 'one', 'doctorate', 'in', 'Industrial', 'Design', 'and', 'Engineering', 'from', 'Delft', 'University', 'of', 'Technology', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'B-field', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'I-field', 'I-field', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'O']}
|
| 32 |
+
{'id': '31', 'tokens': ['With', 'long-time', 'collaborator', 'Laurent', 'Cohen', ',', 'a', 'neurologist', 'at', 'the', 'Pitié-Salpêtrière', 'Hospital', 'in', 'Paris', ',', 'Dehaene', 'also', 'identified', 'patients', 'with', 'lesions', 'in', 'different', 'regions', 'of', 'the', 'parietal', 'lobe', 'with', 'impaired', 'multiplication', ',', 'but', 'preserved', 'subtraction', '(', 'associated', 'with', 'lesions', 'of', 'the', 'inferior', 'parietal', 'lobule', ')', 'and', 'others', 'with', 'impaired', 'subtraction', ',', 'but', 'preserved', 'multiplication', '(', 'associated', 'with', 'lesions', 'to', 'the', 'intraparietal', 'sulcus', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'B-location', 'O', 'B-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O']}
|
| 33 |
+
{'id': '32', 'tokens': ['More', 'recently', ',', 'fictional', 'representations', 'of', 'artificially', 'intelligent', 'robots', 'in', 'films', 'such', 'as', 'A.I.', 'Artificial', 'Intelligence', 'and', 'Ex', 'Machina', 'and', 'the', '2016', 'TV', 'adaptation', 'of', 'Westworld', 'have', 'engaged', 'audience', 'sympathy', 'for', 'the', 'robots', 'themselves', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 34 |
+
{'id': '33', 'tokens': ['Two', 'of', 'the', 'main', 'methods', 'used', 'in', 'unsupervised', 'learning', 'are', 'principal', 'component', 'analysis', 'and', 'cluster', 'analysis', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-task', 'I-task', 'O']}
|
| 35 |
+
{'id': '34', 'tokens': ['The', 'Walt', 'Disney', 'Company', 'also', 'began', 'more', 'prominent', 'use', 'of', '3D', 'films', 'in', 'special', 'venues', 'to', 'impress', 'audiences', 'with', 'Magic', 'Journeys', '(', '1982', ')', 'and', 'Captain', 'EO', '(', 'Francis', 'Ford', 'Coppola', ',', '1986', ',', 'starring', 'Michael', 'Jackson', ')', 'being', 'notable', 'examples', '.'], 'ner_tags': ['B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-person', 'I-person', 'I-person', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O']}
|
| 36 |
+
{'id': '35', 'tokens': ['Since', '2002', ',', 'perceptron', 'training', 'has', 'become', 'popular', 'in', 'the', 'field', 'of', 'natural', 'language', 'processing', 'for', 'such', 'tasks', 'as', 'part-of-speech', 'tagging', 'and', 'syntactic', 'parsing', '(', 'Collins', ',', '2002', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'I-field', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-researcher', 'O', 'O', 'O', 'O']}
|
| 37 |
+
{'id': '36', 'tokens': ['The', 'first', 'palletizing', 'robot', 'was', 'introduced', 'in', '1963', 'by', 'the', 'Fuji', 'Yusoki', 'Kogyo', 'Company.', 'by', 'KUKA', 'robotics', 'in', 'Germany', ',', 'and', 'the', 'Programmable', 'Universal', 'Machine', 'for', 'Assembly', 'was', 'invented', 'by', 'Victor', 'Scheinman', 'in', '1976', ',', 'and', 'the', 'design', 'was', 'sold', 'to', 'Unimation', '.'], 'ner_tags': ['O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'O', 'B-country', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'I-product', 'I-product', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O']}
|
| 38 |
+
{'id': '37', 'tokens': ['In', 'the', 'middle', 'of', 'the', '1990s', ',', 'while', 'serving', 'as', 'president', 'of', 'the', 'AAAI', ',', 'Hayes', 'began', 'a', 'series', 'of', 'attacks', 'on', 'critics', 'of', 'AI', ',', 'mostly', 'phrased', 'in', 'an', 'ironic', 'light', ',', 'and', '(', 'together', 'with', 'his', 'colleague', 'Kenneth', 'Ford', ')', 'invented', 'an', 'award', 'named', 'after', 'Simon', 'Newcomb', 'to', 'be', 'given', 'for', 'the', 'most', 'ridiculous', 'argument', 'disproving', 'the', 'possibility', 'of', 'AI', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'O', 'B-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'O']}
|
| 39 |
+
{'id': '38', 'tokens': ['An', 'optimal', 'value', 'for', 'math', '\\', 'alpha', '/', 'math', 'can', 'be', 'found', 'by', 'using', 'a', 'line', 'search', 'algorithm', ',', 'that', 'is', ',', 'the', 'magnitude', 'of', 'math', '\\', 'alpha', '/', 'math', 'is', 'determined', 'by', 'finding', 'the', 'value', 'that', 'minimizes', 'S', ',', 'usually', 'using', 'a', 'line', 'search', 'in', 'the', 'interval', 'math0', '\\', 'alpha', '1', '/', 'math', 'or', 'a', 'backtracking', 'line', 'search', 'such', 'as', 'Armijo-line', 'search', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O']}
|
| 40 |
+
{'id': '39', 'tokens': ['He', 'discusses', 'Breadth-first', 'search', 'and', 'Depth-first', 'search', 'techniques', ',', 'but', 'eventually', 'concludes', 'that', 'the', 'results', 'represent', 'expert', 'system', 's', 'that', 'incarnate', 'a', 'lot', 'of', 'technical', 'knowledge', 'but', 'don', "'t", 'shine', 'much', 'light', 'on', 'the', 'mental', 'processes', 'that', 'humans', 'use', 'to', 'solve', 'such', 'puzzles', '.'], 'ner_tags': ['O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 41 |
+
{'id': '40', 'tokens': ['Speech', 'recognition', 'and', 'speech', 'synthesis', 'deal', 'with', 'how', 'spoken', 'language', 'can', 'be', 'understood', 'or', 'created', 'using', 'computers', '.'], 'ner_tags': ['B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 42 |
+
{'id': '41', 'tokens': ['This', 'math', '\\', 'theta', '^', '{', '*', '}', '/', 'math', 'is', 'normally', 'estimated', 'using', 'a', 'Maximum', 'Likelihood', '(', 'math', '\\', 'theta', '^', '{', '*', '}', '=', '\\', 'theta', '^', '{', 'ML', '}', '/', 'math', ')', 'or', 'Maximum', 'A', 'Posteriori', '(', 'math', '\\', 'theta', '^', '{', '*', '}', '=', '\\', 'theta', '^', '{', 'MAP', '}', '/', 'math', ')', 'procedure', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 43 |
+
{'id': '42', 'tokens': ['Some', 'less', 'widely', 'spoken', 'languages', 'use', 'the', 'open-source', 'eSpeak', 'synthesizer', 'for', 'their', 'speech', ';', 'producing', 'a', 'robotic', ',', 'awkward', 'voice', 'that', 'may', 'be', 'difficult', 'to', 'understand', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 44 |
+
{'id': '43', 'tokens': ['Although', 'used', 'mainly', 'by', 'statisticians', 'and', 'other', 'practitioners', 'requiring', 'an', 'environment', 'for', 'statistical', 'computation', 'and', 'software', 'development', ',', 'R', 'can', 'also', 'operate', 'as', 'a', 'general', 'matrix', 'calculation', 'toolbox', '-', 'with', 'performance', 'benchmarks', 'comparable', 'to', 'GNU', 'Octave', 'or', 'MATLAB', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'I-programlang', 'O', 'B-product', 'O']}
|
| 45 |
+
{'id': '44', 'tokens': ['Heterodyning', 'is', 'a', 'signal', 'processing', 'technique', 'invented', 'by', 'Canadian', 'inventor-engineer', 'Reginald', 'Fessenden', 'that', 'creates', 'new', 'frequencies', 'by', 'combining', 'mixing', 'two', 'frequencies', '.'], 'ner_tags': ['B-algorithm', 'O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'B-misc', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 46 |
+
{'id': '45', 'tokens': ['Several', 'other', 'features', 'that', 'helped', 'put', '3D', 'back', 'on', 'the', 'map', 'that', 'month', 'were', 'the', 'John', 'Wayne', 'feature', 'Hondo', '(', 'distributed', 'by', 'Warner', 'Bros.', ')', ',', 'Columbia', "'s", 'Miss', 'Sadie', 'Thompson', 'with', 'Rita', 'Hayworth', ',', 'and', 'Paramount', "'s", 'Money', 'From', 'Home', 'with', 'Dean', 'Martin', 'and', 'Jerry', 'Lewis', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'B-misc', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'B-organisation', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'B-person', 'I-person', 'O', 'O', 'B-organisation', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O']}
|
| 47 |
+
{'id': '46', 'tokens': ['DeepFace', 'is', 'a', 'deep', 'learning', 'facial', 'recognition', 'system', 'created', 'by', 'a', 'research', 'group', 'at', 'Facebook', '.'], 'ner_tags': ['B-product', 'O', 'O', 'B-field', 'I-field', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O']}
|
| 48 |
+
{'id': '47', 'tokens': ['Geometry', 'processing', 'is', 'a', 'common', 'research', 'topic', 'at', 'SIGGRAPH', ',', 'the', 'premier', 'computer', 'graphics', 'academic', 'conference', ',', 'and', 'the', 'main', 'topic', 'of', 'the', 'annual', 'Symposium', 'on', 'Geometry', 'Processing', '.'], 'ner_tags': ['B-field', 'I-field', 'O', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'O']}
|
| 49 |
+
{'id': '48', 'tokens': ['Feature', 'extraction', 'and', 'dimension', 'reduction', 'can', 'be', 'combined', 'in', 'one', 'step', 'using', 'Principal', 'Component', 'Analysis', '(', 'PCA', ')', ',', 'linear', 'discriminant', 'analysis', '(', 'LDA', ')', ',', 'or', 'canonical', 'correlation', 'analysis', '(', 'CCA', ')', 'techniques', 'as', 'a', 'pre-processing', 'step', ',', 'followed', 'by', 'clustering', 'by', 'k', '-NN', 'on', 'feature', 'vectors', 'in', 'reduced-dimension', 'space', '.'], 'ner_tags': ['B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 50 |
+
{'id': '49', 'tokens': ['Artificial', 'neural', 'networks', 'are', 'computational', 'models', 'that', 'excel', 'at', 'machine', 'learning', 'and', 'pattern', 'recognition', '.'], 'ner_tags': ['B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-field', 'I-field', 'O']}
|
| 51 |
+
{'id': '50', 'tokens': [',', 'C.', 'Papageorgiou', 'and', 'T.', 'Poggio', ',', 'A', 'Trainable', 'Pedestrian', 'Detection', 'system', ',', 'International', 'Journal', 'of', 'Computer', 'Vision', '(', 'IJCV', ')', ',', 'pages', '1', ':', '15-33', ',', '2000', 'others', 'uses', 'local', 'features', 'like', 'histogram', 'of', 'oriented', 'gradients', 'N.', 'Dalal', ',', 'B.', 'Triggs', ',', 'Histograms', 'of', 'oriented', 'gradients', 'for', 'human', 'detection', ',', 'IEEE', 'Computer', 'Society', 'Conference', 'on', 'Computer', 'Vision', 'and', 'Pattern', 'Recognition', '(', 'CVPR', ')', ',', 'pages', '1', ':', '886-893', ',', '2005', 'descriptors', '.'], 'ner_tags': ['O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'B-product', 'I-product', 'I-product', 'I-product', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'B-conference', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'I-algorithm', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-task', 'I-task', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'B-conference', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 52 |
+
{'id': '51', 'tokens': ['An', 'autoencoder', 'is', 'a', 'type', 'of', 'artificial', 'neural', 'network', 'used', 'to', 'learn', 'Feature', 'learning', 'in', 'an', 'unsupervised', 'learning', 'manner', '.'], 'ner_tags': ['O', 'B-algorithm', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'O', 'B-field', 'I-field', 'O', 'O']}
|
| 53 |
+
{'id': '52', 'tokens': ['Haralick', 'is', 'a', 'Fellow', 'of', 'IEEE', 'for', 'his', 'contributions', 'in', 'computer', 'vision', 'and', 'image', 'processing', 'and', 'a', 'Fellow', 'of', 'the', 'International', 'Association', 'for', 'Pattern', 'Recognition', '(', 'IAPR', ')', 'for', 'his', 'contributions', 'in', 'pattern', 'recognition', ',', 'image', 'processing', ',', 'and', 'for', 'service', 'to', 'IAPR', '.'], 'ner_tags': ['B-researcher', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O']}
|
| 54 |
+
{'id': '53', 'tokens': ['The', 'first', 'attempt', 'at', 'end-to-end', 'ASR', 'was', 'with', 'Connectionist', 'Temporal', 'Classification', '(', 'CTC', ')', '-based', 'systems', 'introduced', 'by', 'Alex', 'Graves', 'of', 'Google', 'DeepMind', 'and', 'Navdeep', 'Jaitly', 'of', 'the', 'University', 'of', 'Toronto', 'in', '2014', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-organisation', 'I-organisation', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'O', 'O']}
|
| 55 |
+
{'id': '54', 'tokens': ['Linear-fractional', 'programming', '(', 'LFP', ')', 'is', 'a', 'generalization', 'of', 'linear', 'programming', '(', 'LP', ')', '.'], 'ner_tags': ['B-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O']}
|
| 56 |
+
{'id': '55', 'tokens': ['Lafferty', 'received', 'numerous', 'awards', ',', 'including', 'two', 'Test-of-Time', 'awards', 'at', 'the', 'International', 'Conference', 'on', 'Machine', 'Learning', '2011', '&', '2012', ','], 'ner_tags': ['B-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O']}
|
| 57 |
+
{'id': '56', 'tokens': ['With', 'the', 'advent', 'of', 'component-based', 'frameworks', 'such', 'as', '.NET', 'and', 'Java', ',', 'component', 'based', 'development', 'environments', 'are', 'capable', 'of', 'deploying', 'the', 'developed', 'neural', 'network', 'to', 'these', 'frameworks', 'as', 'inheritable', 'components', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'O', 'B-programlang', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 58 |
+
{'id': '57', 'tokens': ['As', 'with', 'BLEU', ',', 'the', 'basic', 'unit', 'of', 'evaluation', 'is', 'the', 'sentence', ',', 'the', 'algorithm', 'first', 'creates', 'an', 'alignment', '(', 'see', 'illustrations', ')', 'between', 'two', 'sentence', 's', ',', 'the', 'candidate', 'translation', 'string', ',', 'and', 'the', 'reference', 'translation', 'string', '.'], 'ner_tags': ['O', 'O', 'B-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 59 |
+
{'id': '58', 'tokens': ['One', 'of', 'the', 'metrics', 'used', 'in', 'NIST', "'", 's', 'annual', 'Document', 'Understanding', 'Conferences', ',', 'in', 'which', 'research', 'groups', 'submit', 'their', 'systems', 'for', 'both', 'summarization', 'and', 'translation', 'tasks', ',', 'is', 'the', 'ROUGE', 'metric', '(', 'Recall-Oriented', 'Understudy', 'for', 'Gisting', 'Evaluation', ',', 'In', 'Advances', 'of', 'Neural', 'Information', 'Processing', 'Systems', '(', 'NIPS', ')', ',', 'Montreal', ',', 'Canada', ',', 'December', '-', '2014', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-task', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'B-conference', 'O', 'O', 'B-location', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O']}
|
| 60 |
+
{'id': '59', 'tokens': ['Same', 'implementation', ',', 'to', 'run', 'in', 'Java', 'with', 'JShell', '(', 'Java', '9', 'minimum', ')', ':', 'codejshell', 'scriptfile', '/', 'codesyntaxhighlight', 'lang', '=', 'java'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'B-product', 'O', 'B-programlang', 'I-programlang', 'O', 'O', 'O', 'B-product', 'O', 'O', 'O', 'O', 'O', 'B-programlang']}
|
| 61 |
+
{'id': '60', 'tokens': ['The', 'NIST', 'metric', 'is', 'based', 'on', 'the', 'BLEU', 'metric', ',', 'but', 'with', 'some', 'alterations', '.'], 'ner_tags': ['O', 'B-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 62 |
+
{'id': '61', 'tokens': ['In', 'the', 'late', '1980s', ',', 'two', 'Netherlands', 'universities', ',', 'University', 'of', 'Groningen', 'and', 'University', 'of', 'Twente', ',', 'jointly', 'began', 'a', 'project', 'called', 'Knowledge', 'Graphs', ',', 'which', 'are', 'semantic', 'networks', 'but', 'with', 'the', 'added', 'constraint', 'that', 'edges', 'are', 'restricted', 'to', 'be', 'from', 'a', 'limited', 'set', 'of', 'possible', 'relations', ',', 'to', 'facilitate', 'algebras', 'on', 'the', 'graph', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'B-university', 'I-university', 'I-university', 'O', 'B-university', 'I-university', 'I-university', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 63 |
+
{'id': '62', 'tokens': ['Grammar', 'checkers', 'are', 'most', 'often', 'implemented', 'as', 'a', 'feature', 'of', 'a', 'larger', 'program', ',', 'such', 'as', 'a', 'word', 'processor', ',', 'but', 'are', 'also', 'available', 'as', 'a', 'stand-alone', 'application', 'that', 'can', 'be', 'activated', 'from', 'within', 'programs', 'that', 'work', 'with', 'editable', 'text', '.'], 'ner_tags': ['B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 64 |
+
{'id': '63', 'tokens': ['He', 'is', 'a', 'Fellow', 'of', 'the', 'American', 'Association', 'for', 'the', 'Advancement', 'of', 'Science', ',', 'Association', 'for', 'the', 'Advancement', 'Artificial', 'Intelligence', ',', 'and', 'Cognitive', 'Science', 'Society', ',', 'and', 'an', 'editor', 'of', 'the', 'J.', 'Automated', 'Reasoning', ',', 'J.', 'Learning', 'Sciences', ',', 'and', 'J.', 'Applied', 'Ontology', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'O', 'B-conference', 'I-conference', 'I-conference', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'O']}
|
| 65 |
+
{'id': '64', 'tokens': ['Linear', 'predictive', 'coding', '(', 'LPC', ')', ',', 'a', 'form', 'of', 'speech', 'coding', ',', 'began', 'development', 'with', 'the', 'work', 'Fumitada', 'Itakura', 'of', 'Nagoya', 'University', 'and', 'Shuzo', 'Saito', 'of', 'Nippon', 'Telegraph', 'and', 'Telephone', '(', 'NTT', ')', 'in', '1966', '.'], 'ner_tags': ['B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-university', 'I-university', 'O', 'B-researcher', 'I-researcher', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'O', 'B-university', 'O', 'O', 'O', 'O']}
|
| 66 |
+
{'id': '65', 'tokens': ['If', 'the', 'signal', 'is', 'further', 'ergodic', ',', 'all', 'sample', 'paths', 'exhibits', 'the', 'same', 'time-average', 'and', 'thus', 'mathR', '_', 'x', '^', '{', 'n', '/', 'T', '_', '0', '}', '(', '\\', 'tau', ')', '=', '\\', 'widehat', '{', 'R', '}', '_', 'x', '^', '{', 'n', '/', 'T', '_', '0', '}', '(', '\\', 'tau', ')', '/', 'math', 'in', 'mean', 'square', 'error', 'sense', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'O', 'O']}
|
| 67 |
+
{'id': '66', 'tokens': ['Feature', 'extraction', 'and', 'dimension', 'reduction', 'can', 'be', 'combined', 'in', 'one', 'step', 'using', 'principal', 'component', 'analysis', '(', 'PCA', ')', ',', 'linear', 'discriminant', 'analysis', '(', 'LDA', ')', ',', 'canonical', 'correlation', 'analysis', '(', 'CCA', ')', ',', 'or', 'non-negative', 'matrix', 'factorization', '(', 'NMF', ')', 'techniques', 'as', 'a', 'pre-processing', 'step', 'followed', 'by', 'clustering', 'by', 'K-NN', 'on', 'feature', 'vectors', 'in', 'reduced-dimension', 'space', '.'], 'ner_tags': ['B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'B-algorithm', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O']}
|
| 68 |
+
{'id': '67', 'tokens': ['Libraries', 'written', 'in', 'Perl', ',', 'Java', ',', 'ActiveX', 'or', '.NET', 'can', 'be', 'directly', 'called', 'from', 'MATLAB', ','], 'ner_tags': ['O', 'O', 'O', 'B-programlang', 'O', 'B-programlang', 'O', 'B-programlang', 'O', 'B-programlang', 'O', 'O', 'O', 'O', 'O', 'B-product', 'O']}
|
| 69 |
+
{'id': '68', 'tokens': ['The', 'task', 'of', 'recognizing', 'named', 'entities', 'in', 'text', 'is', 'Named', 'Entity', 'Recognition', 'while', 'the', 'task', 'of', 'determining', 'the', 'identity', 'of', 'the', 'named', 'entities', 'mentioned', 'in', 'text', 'is', 'called', 'Entity', 'Linking', '.'], 'ner_tags': ['O', 'O', 'O', 'B-task', 'I-task', 'I-task', 'I-task', 'I-task', 'O', 'B-task', 'I-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O']}
|
| 70 |
+
{'id': '69', 'tokens': ['The', 'sigmoid', 'function', 's', 'and', 'derivatives', 'used', 'in', 'the', 'package', 'were', 'originally', 'included', 'in', 'the', 'package', ',', 'from', 'version', '0.8.0', 'onwards', ',', 'these', 'were', 'released', 'in', 'a', 'separate', 'R', 'package', 'sigmoid', ',', 'with', 'the', 'intention', 'to', 'enable', 'more', 'general', 'use', '.'], 'ner_tags': ['O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 71 |
+
{'id': '70', 'tokens': ['Logo', 'was', 'created', 'in', '1967', 'at', 'Bolt', ',', 'Beranek', 'and', 'Newman', '(', 'BBN', ')', ',', 'a', 'Cambridge', ',', 'Massachusetts', 'research', 'firm', ',', 'by', 'Wally', 'Feurzeig', ',', 'Cynthia', 'Solomon', ',', 'and', 'Seymour', 'Papert', '.'], 'ner_tags': ['B-programlang', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O', 'O', 'O', 'B-university', 'O', 'B-university', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'B-researcher', 'I-researcher', 'O']}
|
| 72 |
+
{'id': '71', 'tokens': ['Neuroevolution', 'is', 'commonly', 'used', 'as', 'part', 'of', 'the', 'reinforcement', 'learning', 'paradigm', ',', 'and', 'it', 'can', 'be', 'contrasted', 'with', 'conventional', 'deep', 'learning', 'techniques', 'that', 'use', 'gradient', 'descent', 'on', 'a', 'neural', 'network', 'with', 'a', 'fixed', 'topology', '.'], 'ner_tags': ['B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O']}
|
| 73 |
+
{'id': '72', 'tokens': ['If', 'we', 'use', 'least', 'squares', 'to', 'fit', 'a', 'function', 'in', 'the', 'form', 'of', 'a', 'hyperplane', 'ŷ', '=', 'a', '+', 'β', 'supT', '/', 'sup', 'x', 'to', 'the', 'data', '(', 'x', 'sub', 'i', '/', 'sub', ',', 'y', 'sub', 'i', '/', 'sub', ')', 'sub', '1', '≤', 'i', '≤', 'n', '/', 'sub', ',', 'we', 'could', 'then', 'assess', 'the', 'fit', 'using', 'the', 'mean', 'squared', 'error', '(', 'MSE', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'O', 'B-metrics', 'O', 'O']}
|
| 74 |
+
{'id': '73', 'tokens': ['The', 'company', 'has', 'international', 'locations', 'in', 'Australia', ',', 'Brazil', ',', 'Canada', ',', 'China', ',', 'Germany', ',', 'India', ',', 'Italy', ',', 'Japan', ',', 'Korea', ',', 'Lithuania', ',', 'Poland', ',', 'Malaysia', ',', 'the', 'Philippines', ',', 'Russia', ',', 'Singapore', ',', 'South', 'Africa', ',', 'Spain', ',', 'Taiwan', ',', 'Thailand', ',', 'Turkey', 'and', 'the', 'United', 'Kingdom', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'I-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'O', 'B-country', 'I-country', 'O']}
|
| 75 |
+
{'id': '74', 'tokens': ['He', 'holds', 'a', 'D.Sc.', 'degree', 'in', 'electrical', 'and', 'computer', 'engineering', '(', '2000', ')', 'from', 'Inria', 'and', 'the', 'University', 'of', 'Nice', 'Sophia', 'Antipolis', ',', 'and', 'has', 'held', 'permanent', 'positions', 'at', 'Siemens', 'Corporate', 'Technology', ',', 'École', 'des', 'ponts', 'ParisTech', 'as', 'well', 'as', 'visiting', 'positions', 'at', 'Rutgers', 'University', ',', 'Yale', 'University', 'and', 'University', 'of', 'Houston', '.'], 'ner_tags': ['O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-field', 'I-field', 'I-field', 'I-field', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'I-university', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'B-university', 'I-university', 'I-university', 'I-university', 'O', 'O', 'O', 'O', 'O', 'O', 'B-university', 'I-university', 'O', 'B-university', 'I-university', 'O', 'B-university', 'I-university', 'I-university', 'O']}
|
| 76 |
+
{'id': '75', 'tokens': ['Licensing', 'the', 'original', 'patent', 'awarded', 'to', 'inventor', 'George', 'Devol', ',', 'Engelberger', 'developed', 'the', 'first', 'industrial', 'robot', 'in', 'the', 'United', 'States', ',', 'the', 'Unimate', ',', 'in', 'the', '1950s', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'B-product', 'O', 'O', 'O', 'O', 'O']}
|
| 77 |
+
{'id': '76', 'tokens': ['The', 'input', 'is', 'called', 'speech', 'recognition', 'and', 'the', 'output', 'is', 'called', 'speech', 'synthesis', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O']}
|
| 78 |
+
{'id': '77', 'tokens': ['Descendants', 'of', 'the', 'CLIPS', 'language', 'include', 'Jess', '(', 'rule-based', 'portion', 'of', 'CLIPS', 'rewritten', 'in', 'Java', ',', 'it', 'later', 'grew', 'up', 'in', 'different', 'direction', ')', ',', 'JESS', 'was', 'originally', 'inspired'], 'ner_tags': ['O', 'O', 'O', 'B-programlang', 'O', 'O', 'B-programlang', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'O', 'B-programlang', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'O', 'O']}
|
| 79 |
+
{'id': '78', 'tokens': ['It', 'also', 'created', 'flexible', 'intelligent', 'AGV', 'applications', ',', 'designing', 'the', 'Motivity', 'control', 'system', 'used', 'by', 'RMT', 'Robotics', 'to', 'develop', 'its', 'ADAM', 'iAGV', '(', 'Self-Guided', 'Vehicle', ')', ',', 'used', 'for', 'complex', 'pick', 'and', 'place', 'operations', ',', 'in', 'conjunction', 'with', 'gantry', 'systems', 'and', 'industrial', 'robot', 'arms', ',', 'used', 'in', 'first-tier', 'auto', 'supply', 'factories', 'to', 'move', 'products', 'from', 'process', 'to', 'process', 'in', 'non-linear', 'layouts', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-product', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'B-product', 'I-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O']}
|
| 80 |
+
{'id': '79', 'tokens': ['The', 'parameters', 'β', 'are', 'typically', 'estimated', 'by', 'maximum', 'likelihood', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'O']}
|
| 81 |
+
{'id': '80', 'tokens': ['The', 'information', 'retrieval', 'metrics', 'such', 'as', 'precision', 'and', 'recall', 'or', 'DCG', 'are', 'useful', 'to', 'assess', 'the', 'quality', 'of', 'a', 'recommendation', 'method', '.'], 'ner_tags': ['O', 'B-task', 'I-task', 'O', 'O', 'O', 'B-metrics', 'O', 'B-metrics', 'O', 'B-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 82 |
+
{'id': '81', 'tokens': ['A', 'typical', 'factory', 'contains', 'hundreds', 'of', 'industrial', 'robot', 's', 'working', 'on', 'fully', 'automated', 'production', 'lines', ',', 'with', 'one', 'robot', 'for', 'every', 'ten', 'human', 'workers', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 83 |
+
{'id': '82', 'tokens': ['Over', 'the', 'past', 'decade', ',', 'PCNNs', 'have', 'been', 'used', 'in', 'a', 'variety', 'of', 'image', 'processing', 'applications', ',', 'including', ':', 'image', 'segmentation', ',', 'feature', 'generation', ',', 'face', 'extraction', ',', 'motion', 'detection', ',', 'region', 'growing', ',', 'and', 'noise', 'reduction', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'B-task', 'I-task', 'O']}
|
| 84 |
+
{'id': '83', 'tokens': ['Xu', 'has', 'published', 'more', 'than', '50', 'papers', 'at', 'international', 'conferences', 'and', 'in', 'journals', 'in', 'the', 'field', 'of', 'computer', 'vision', 'and', 'won', 'the', 'Best', 'Paper', 'Award', 'at', 'the', 'international', 'conference', 'on', 'Non-Photorealistic', 'Rendering', 'and', 'Animation', '(', 'NPAR', ')', '2012', 'and', 'the', 'Best', 'Reviewer', 'Award', 'at', 'the', 'international', 'conferences', 'Asian', 'Conference', 'on', 'Computer', 'Vision', 'ACCV', '2012', 'and', 'International', 'Conference', 'on', 'Computer', 'Vision', '(', 'ICCV', ')', '2015', '.'], 'ner_tags': ['B-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'B-conference', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'B-conference', 'I-conference', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'B-conference', 'O', 'O', 'O']}
|
| 85 |
+
{'id': '84', 'tokens': ['CycL', 'in', 'computer', 'science', 'and', 'artificial', 'intelligence', 'is', 'an', 'ontology', 'language', 'used', 'by', 'Doug', 'Lenat', "'s", 'Cyc', 'artificial', 'project', '.'], 'ner_tags': ['B-programlang', 'O', 'B-field', 'I-field', 'O', 'B-field', 'I-field', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-misc', 'I-misc', 'I-misc', 'O']}
|
| 86 |
+
{'id': '85', 'tokens': ['Also', 'in', 'regression', 'analysis', ',', 'mean', 'squared', 'error', ',', 'often', 'referred', 'to', 'as', 'mean', 'squared', 'prediction', 'error', 'or', 'out-of-sample', 'mean', 'squared', 'error', ',', 'can', 'refer', 'to', 'the', 'mean', 'value', 'of', 'the', 'squared', 'deviations', 'of', 'the', 'predictions', 'from', 'the', 'TRUE', 'values', ',', 'over', 'an', 'out-of-sample', 'test', 'space', ',', 'generated', 'by', 'a', 'model', 'estimated', 'over', 'a', 'particular', 'sample', 'space', '.'], 'ner_tags': ['O', 'O', 'B-task', 'I-task', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 87 |
+
{'id': '86', 'tokens': ['As', 'for', 'the', 'results', ',', 'the', 'C-HOG', 'and', 'R-HOG', 'block', 'descriptors', 'perform', 'comparably', ',', 'with', 'the', 'C-HOG', 'descriptors', 'maintaining', 'a', 'slight', 'advantage', 'in', 'the', 'detection', 'miss', 'rate', 'at', 'fixed', 'FALSE', 'positive', 'rate', 's', 'across', 'both', 'data', 'sets', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'O', 'B-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 88 |
+
{'id': '87', 'tokens': ['Popular', 'recognition', 'algorithms', 'include', 'principal', 'component', 'analysis', 'using', 'eigenface', 's', ',', 'linear', 'discriminant', 'analysis', ',', 'Elastic', 'matching', 'using', 'the', 'Fisherface', 'algorithm', ',', 'the', 'hidden', 'Markov', 'model', ',', 'the', 'multilinear', 'subspace', 'learning', 'using', 'tensor', 'representation', ',', 'and', 'the', 'neuronal', 'motivated', 'dynamic', 'link', 'matching', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-misc', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O']}
|
| 89 |
+
{'id': '88', 'tokens': ['Beginning', 'at', 'the', '2019', 'Toronto', 'International', 'Film', 'Festival', ',', 'films', 'may', 'now', 'be', 'restricted', 'from', 'screening', 'at', 'Scotiabank', 'Theatre', 'Toronto', '-', 'one', 'of', 'the', 'festival', "'s", 'main', 'venues', '-', 'and', 'screened', 'elsewhere', '(', 'such', 'as', 'TIFF', 'Bell', 'Lightbox', 'and', 'other', 'local', 'cinemas', ')', 'if', 'distributed', 'by', 'a', 'service', 'such', 'as', 'Netflix', '.'], 'ner_tags': ['O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O']}
|
| 90 |
+
{'id': '89', 'tokens': ['Unimation', 'purchased', 'Victor', 'Scheinman', "'", 's', 'Vicarm', 'Inc.', 'in', '1977', ',', 'and', 'with', 'Scheinman', "'s", 'help', ',', 'the', 'company', 'created', 'and', 'began', 'producing', 'the', 'Programmable', 'Universal', 'Machine', 'for', 'Assembly', ',', 'a', 'new', 'model', 'of', 'robotic', 'arm', ',', 'and', 'using', 'Scheinman', "'s", 'cutting-edge', 'VAL', 'programming', 'language', '.'], 'ner_tags': ['B-organisation', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'I-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'O', 'O', 'B-programlang', 'I-programlang', 'I-programlang', 'O']}
|
| 91 |
+
{'id': '90', 'tokens': ['J48', 'is', 'an', 'open', 'source', 'Java', 'implementation', 'of', 'the', 'C4.5', 'algorithm', 'in', 'the', 'Weka', 'data', 'mining', 'tool', '.'], 'ner_tags': ['B-product', 'O', 'O', 'O', 'O', 'B-programlang', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'B-product', 'I-product', 'I-product', 'I-product', 'O']}
|
| 92 |
+
{'id': '91', 'tokens': ['The', '2004', 'SSIM', 'paper', 'has', 'been', 'cited', 'over', '20,000', 'times', 'according', 'to', 'Google', 'Scholar', ',', 'It', 'also', 'received', 'the', 'IEEE', 'Signal', 'Processing', 'Society', 'Sustained', 'Impact', 'Award', 'for', '2016', ',', 'indicative', 'of', 'a', 'paper', 'having', 'an', 'unusually', 'high', 'impact', 'for', 'at', 'least', '10', 'years', 'following', 'its', 'publication', '.'], 'ner_tags': ['O', 'O', 'B-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 93 |
+
{'id': '92', 'tokens': ['The', 'speech', 'synthesis', 'is', 'verging', 'on', 'being', 'completely', 'indistinguishable', 'from', 'a', 'real', 'human', "'s", 'voice', 'with', 'the', '2016', 'introduction', 'of', 'the', 'voice', 'editing', 'and', 'generation', 'software', 'Adobe', 'Voco', ',', 'a', 'prototype', 'slated', 'to', 'be', 'a', 'part', 'of', 'the', 'Adobe', 'Creative', 'Suite', 'and', 'DeepMind', 'WaveNet', ',', 'a', 'prototype', 'from', 'Google', '.'], 'ner_tags': ['O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-product', 'I-product', 'I-product', 'O', 'B-organisation', 'B-product', 'O', 'O', 'O', 'O', 'B-organisation', 'O']}
|
| 94 |
+
{'id': '93', 'tokens': ['Poggio', 'is', 'an', 'honorary', 'member', 'of', 'the', 'Neuroscience', 'Research', 'Program', ',', 'a', 'member', 'of', 'the', 'American', 'Academy', 'of', 'Arts', 'and', 'Sciences', 'and', 'a', 'founding', 'fellow', 'of', 'AAAI', 'and', 'a', 'founding', 'member', 'of', 'the', 'McGovern', 'Institute', 'for', 'Brain', 'Research', '.'], 'ner_tags': ['B-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O']}
|
| 95 |
+
{'id': '94', 'tokens': ['During', 'the', '1990s', ',', 'encouraged', 'by', 'successes', 'in', 'speech', 'recognition', 'and', 'speech', 'synthesis', ',', 'research', 'began', 'into', 'speech', 'translation', 'with', 'the', 'development', 'of', 'the', 'German', 'Verbmobil', 'project', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'B-task', 'I-task', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'B-misc', 'I-misc', 'O']}
|
| 96 |
+
{'id': '95', 'tokens': ['In', '1999', ',', 'Felix', 'Gers', 'and', 'his', 'advisor', 'Jürgen', 'Schmidhuber', 'and', 'Fred', 'Cummins', 'introduced', 'the', 'forget', 'gate', '(', 'also', 'called', 'keep', 'gate', ')', 'into', 'LSTM', 'architecture', ','], 'ner_tags': ['O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'O', 'B-algorithm', 'I-algorithm', 'O', 'O', 'B-algorithm', 'O', 'O']}
|
| 97 |
+
{'id': '96', 'tokens': ['In', 'digital', 'signal', 'processing', 'and', 'information', 'theory', ',', 'the', 'normalized', 'sinc', 'function', 'is', 'commonly', 'defined', 'for', 'by'], 'ner_tags': ['O', 'B-field', 'I-field', 'I-field', 'O', 'B-field', 'I-field', 'O', 'O', 'B-algorithm', 'I-algorithm', 'I-algorithm', 'O', 'O', 'O', 'O', 'O']}
|
| 98 |
+
{'id': '97', 'tokens': ['The', 'term', 'computational', 'linguistics', 'itself', 'was', 'first', 'coined', 'by', 'David', 'Hays', ',', 'a', 'founding', 'member', 'of', 'both', 'the', 'Association', 'for', 'Computational', 'Linguistics', 'and', 'the', 'International', 'Committee', 'on', 'Computational', 'Linguistics', '(', 'ICCL', ')', '.'], 'ner_tags': ['O', 'O', 'B-field', 'I-field', 'O', 'O', 'O', 'O', 'O', 'B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-conference', 'I-conference', 'I-conference', 'I-conference', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O', 'O']}
|
| 99 |
+
{'id': '98', 'tokens': ['59', ',', 'pp.', '2547-2553', ',', 'Oct.', '2011', 'In', 'one', 'dimensional', 'polynomial-based', 'memory', '(', 'or', 'memoryless', ')', 'DPD', ',', 'in', 'order', 'to', 'solve', 'for', 'the', 'digital', 'pre-distorter', 'polynomials', 'coefficients', 'and', 'minimize', 'the', 'mean', 'squared', 'error', '(', 'MSE', ')', ',', 'the', 'distorted', 'output', 'of', 'the', 'nonlinear', 'system', 'must', 'be', 'over-sampled', 'at', 'a', 'rate', 'that', 'enables', 'the', 'capture', 'of', 'the', 'nonlinear', 'products', 'of', 'the', 'order', 'of', 'the', 'digital', 'pre-distorter', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-metrics', 'I-metrics', 'I-metrics', 'O', 'B-metrics', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 100 |
+
{'id': '99', 'tokens': ['Boris', 'Katz', ',', '(', 'born', 'October', '5', ',', '1947', ',', 'Chișinău', ',', 'Moldavian', 'SSR', ',', 'Soviet', 'Union', ',', '(', 'now', 'Chișinău', ',', 'Moldova', ')', ')', 'is', 'a', 'principal', 'American', 'research', 'scientist', '(', 'computer', 'scientist', ')', 'at', 'the', 'MIT', 'Computer', 'Science', 'and', 'Artificial', 'Intelligence', 'Laboratory', 'at', 'the', 'Massachusetts', 'Institute', 'of', 'Technology', 'in', 'Cambridge', 'and', 'head', 'of', 'the', 'Laboratory', "'s", 'InfoLab', 'Group', '.'], 'ner_tags': ['B-researcher', 'I-researcher', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'B-location', 'I-location', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'B-location', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-university', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O']}
|
data/ai/validation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/conll2003/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/conll2003/train.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/conll2003/validation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/literature/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/literature/train.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{'id': '0', 'tokens': ['In', '1351', ',', 'during', 'the', 'reign', 'of', 'Emperor', 'Toghon', 'Temür', 'of', 'the', 'Yuan', 'dynasty', ',', '93rd-generation', 'descendant', 'Kong', 'Huan', '(', '孔浣', ')', "'", 's', '2nd', 'son', 'Kong', 'Shao', '(', '孔昭', ')', 'moved', 'from', 'China', 'to', 'Korea', 'during', 'the', 'Goryeo', ',', 'and', 'was', 'received', 'courteously', 'by', 'Princess', 'Noguk', '(', 'the', 'Mongolian-born', 'wife', 'of', 'the', 'future', 'king', 'Gongmin', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'I-person', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'O', 'O', 'O', 'B-country', 'O', 'B-country', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'B-person', 'O', 'O']}
|
| 2 |
+
{'id': '1', 'tokens': ['In', '1990', ',', 'he', 'published', 'the', 'last', 'Rabbit', 'novel', ',', 'Rabbit', 'at', 'Rest', ',', 'which', 'won', 'the', 'Pulitzer', 'Prize', 'and', 'the', 'National', 'Book', 'Critics', 'Circle', 'Award', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 3 |
+
{'id': '2', 'tokens': ['She', 'is', 'known', 'for', 'her', 'two', 'best-selling', 'novels', ',', 'The', 'Fountainhead', 'and', 'Atlas', 'Shrugged', ',', 'and', 'for', 'developing', 'a', 'philosophical', 'system', 'she', 'named', 'Objectivism', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-book', 'I-book', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O']}
|
| 4 |
+
{'id': '3', 'tokens': ['The', 'following', 'year', 'they', 'collaborated', 'on', 'a', 'musical', 'film', 'version', 'of', 'The', 'Little', 'Prince', ',', 'based', 'on', 'the', 'classic', 'children', "'s", 'tale', 'by', 'Antoine', 'de', 'Saint-Exupéry', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O']}
|
| 5 |
+
{'id': '4', 'tokens': ['Lindbergh', "'s", 'Pulitzer', 'Prize', '-winning', 'biographer', ',', 'A.', 'Scott', 'Berg', ',', 'contended', 'that', 'Lindbergh', 'was', 'not', 'so', 'much', 'a', 'supporter', 'of', 'the', 'Nazi', 'regime', 'as', 'someone', 'so', 'stubborn', 'in', 'his', 'convictions', 'and', 'relatively', 'inexperienced', 'in', 'political', 'maneuvering', 'that', 'he', 'easily', 'allowed', 'rivals', 'to', 'portray', 'him', 'as', 'one', '.'], 'ner_tags': ['B-person', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 6 |
+
{'id': '5', 'tokens': ['Highly', 'regarded', 'in', 'his', 'lifetime', 'and', 'for', 'a', 'period', 'thereafter', ',', 'he', 'is', 'now', 'largely', 'remembered', 'for', 'his', 'anti-slavery', 'writings', 'and', 'his', 'poems', 'Barbara', 'Frietchie', ',', 'The', 'Barefoot', 'Boy', ',', 'Maud', 'Muller', 'and', 'Snow-Bound', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'B-literarygenre', 'B-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'O', 'B-poem', 'O']}
|
| 7 |
+
{'id': '6', 'tokens': ['7th', 'Century', 'CE', ')', ',', 'author', 'of', 'Shishupala', 'Vadha', ',', 'an', 'epic', 'famous', 'for', 'its', 'linguistic', 'ingenuity', ',', 'and', 'Śrīharṣa', '(', '12th', 'century', 'CE', ')', ',', 'author', 'of', 'Naishadha', 'Charita', '(', 'Naiṣadhīya-carita', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'O', 'B-poem', 'O', 'O']}
|
| 8 |
+
{'id': '7', 'tokens': ['He', 'then', 'went', 'to', 'live', 'at', 'Chalcedon', ',', 'whence', 'in', '367', 'he', 'was', 'banished', 'to', 'Mauretania', 'for', 'harbouring', 'the', 'rebel', 'Procopius', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'O', 'B-writer', 'O']}
|
| 9 |
+
{'id': '8', 'tokens': ['Far', 'more', 'manuscripts', 'of', 'the', 'Prick', 'of', 'Conscience', 'than', 'any', 'other', 'Middle', 'English', 'poem', 'survive', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'B-misc', 'I-misc', 'B-literarygenre', 'O', 'O']}
|
| 10 |
+
{'id': '9', 'tokens': ['This', 'uses', 'the', 'words', 'of', 'war', 'poet', 'Wilfred', 'Owen', "'", 's', 'At', 'a', 'Calvary', 'near', 'the', 'Ancre', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O']}
|
| 11 |
+
{'id': '10', 'tokens': ['Arrian', ',', 'Anabasis', 'Alexandri', '1.12.1', ',', 'Cicero', ',', 'Pro', 'Archia', 'Poeta', '24', '.'], 'ner_tags': ['B-writer', 'O', 'B-book', 'I-book', 'O', 'O', 'B-writer', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O']}
|
| 12 |
+
{'id': '11', 'tokens': ['United', 'States', 'poets', 'such', 'as', 'John', 'Ashbery', ',', 'Marilyn', 'Hacker', ',', 'Donald', 'Justice', '(', 'Pantoum', 'of', 'the', 'Great', 'Depression', ')', ',', 'and', 'David', 'Trinidad', 'have', 'done', 'work', 'in', 'this', 'form', ',', 'as', 'has', 'Irish', 'poet', 'Caitriona', 'O', "'Reilly", '.'], 'ner_tags': ['B-country', 'I-country', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'B-writer', 'I-writer', 'I-writer', 'O']}
|
| 13 |
+
{'id': '12', 'tokens': ['In', '2009', ',', 'Erdrich', 'was', 'a', 'Pulitzer', 'Prize', 'finalist', 'for', 'The', 'Plague', 'of', 'Doves', 'The', 'Plague', 'of', 'Doves', 'focuses', 'on', 'the', 'historical', 'lynching', 'of', 'four', 'Native', 'people', 'wrongly', 'accused', 'of', 'murdering', 'a', 'Caucasian', 'family', ',', 'and', 'the', 'effect', 'of', 'this', 'injustice', 'on', 'the', 'current', 'generations', '.'], 'ner_tags': ['O', 'O', 'O', 'B-writer', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 14 |
+
{'id': '13', 'tokens': ['Under', 'the', 'influence', 'of', 'Adrian', 'Maniu', ',', 'the', 'adolescent', 'Tzara', 'became', 'interested', 'in', 'Symbolism', 'and', 'co-founded', 'the', 'magazine', 'Simbolul', 'with', 'Ion', 'Vinea', '(', 'with', 'whom', 'he', 'also', 'wrote', 'experimental', 'poetry', ')', 'and', 'painter', 'Marcel', 'Janco', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'B-literarygenre', 'O', 'O', 'O', 'O', 'B-magazine', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'O', 'B-person', 'I-person', 'O']}
|
| 15 |
+
{'id': '14', 'tokens': ['The', 'film', 'was', 'presented', 'at', 'the', 'Cannes', 'Film', 'Festival', ',', 'won', 'the', 'Grand', 'Prix', 'Spécial', 'du', 'Jury', 'and', 'the', 'FIPRESCI', 'prize', ',', 'and', 'was', 'nominated', 'for', 'the', 'Palme', 'd', "'Or", '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O']}
|
| 16 |
+
{'id': '15', 'tokens': ['The', 'Story', 'of', 'Civilization', ':', 'Volume', '8', ',', 'The', 'Age', 'of', 'Louis', 'XIV', 'by', 'Will', 'Durant', ';', 'chapter', 'II', ',', 'subsection', '4.1', 'p.56', ')'], 'ner_tags': ['B-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 17 |
+
{'id': '16', 'tokens': ['The', 'title', 'of', 'the', 'story', 'refers', 'to', 'a', 'bedtime', 'poem', 'recited', 'in', 'the', 'narrative', 'entitled', 'There', 'Will', 'Come', 'Soft', 'Rains', ',', 'an', 'actual', 'poem', 'by', 'Sara', 'Teasdale', 'originally', 'published', 'in', '1920', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O']}
|
| 18 |
+
{'id': '17', 'tokens': ['The', 'illustrated', 'and', 'audio', 'adventure', 'is', 'titled', 'Winnie-the-Pooh', 'Meets', 'the', 'Queen', ',', 'and', 'has', 'been', 'narrated', 'by', 'actor', 'Jim', 'Broadbent', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O']}
|
| 19 |
+
{'id': '18', 'tokens': ['It', 'was', 'selected', 'as', 'one', 'of', 'the', 'best', 'science', 'fiction', 'short', 'stories', 'of', 'the', 'pre-', 'Nebula', 'Award', 'period', 'by', 'the', 'Science', 'Fiction', 'and', 'Fantasy', 'Writers', 'of', 'America', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'I-literarygenre', 'I-literarygenre', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O']}
|
| 20 |
+
{'id': '19', 'tokens': ['Private', 'Eye', 'parodied', 'Sue', 'Townsend', "'", 's', 'The', 'Secret', 'Diary', 'of', 'Adrian', 'Mole', ',', 'age', '13', '¾', 'to', 'write', 'The', 'Secret', 'Diary', 'of', 'John', 'Major', ',', 'age', '47', '¾', ',', 'in', 'which', 'Major', 'was', 'portrayed', 'as', 'naïve', 'and', 'childish', ',', 'keeping', 'lists', 'of', 'his', 'enemies', 'in', 'a', 'Rymans', 'Notebook', 'called', 'his', 'Bastards', 'Book', ',', 'and', 'featuring', 'my', 'wife', 'Norman', 'and', 'Mr', 'Dr', 'Mawhinney', 'as', 'recurring', 'character', 's', '.'], 'ner_tags': ['B-magazine', 'I-magazine', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'B-person', 'O', 'B-person', 'I-person', 'I-person', 'O', 'O', 'O', 'O', 'O']}
|
| 21 |
+
{'id': '20', 'tokens': ['The', 'British', 'military', 'historian', 'John', 'Keegan', 'attacked', 'Clausewitz', "'s", 'theory', 'in', 'his', 'book', 'A', 'History', 'of', 'Warfare', '.', 'John', 'Keegan', ',', 'A', 'History', 'of', 'Warfare', '.'], 'ner_tags': ['O', 'B-misc', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'O']}
|
| 22 |
+
{'id': '21', 'tokens': ['The', 'film', "'s", 'soundtrack', 'often', 'forms', 'a', 'major', 'component', 'of', 'the', 'narrative', ',', 'just', 'as', 'with', 'other', 'important', 'arthouse', 'films', 'of', 'the', 'era', 'such', 'as', 'Donald', 'Cammell', 'and', 'Nicolas', 'Roeg', "'", 's', 'Performance', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O', 'O', 'B-misc', 'O']}
|
| 23 |
+
{'id': '22', 'tokens': ['John', 'Updike', ',', 'comparing', 'Abner', 'to', 'a', 'hillbilly', 'Candide', ',', 'added', 'that', 'the', 'strip', "'s", 'richness', 'of', 'social', 'and', 'philosophical', 'commentary', 'approached', 'the', 'Voltairean', '.'], 'ner_tags': ['B-writer', 'I-writer', 'O', 'O', 'B-person', 'O', 'O', 'O', 'B-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 24 |
+
{'id': '23', 'tokens': ['In', 'an', 'article', 'for', 'The', 'Atlantic', ',', 'film', 'critic', 'Ty', 'Burr', 'deemed', 'The', 'Birth', 'of', 'a', 'Nation', 'the', 'most', 'influential', 'film', 'in', 'history', 'while', 'criticizing', 'its', 'portrayal', 'of', 'black', 'men', 'as', 'savage', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 25 |
+
{'id': '24', 'tokens': ['Sergei', 'Rachmaninoff', ',', 'Rainer', 'Maria', 'Rilke', 'and', 'Leo', 'Tolstoy', 'were', 'all', 'visitors', 'to', 'the', 'family', 'home', '.'], 'ner_tags': ['B-person', 'I-person', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 26 |
+
{'id': '25', 'tokens': ['At', 'the', '47th', 'Berlin', 'International', 'Film', 'Festival', 'in', '1997', ',', 'DiCaprio', 'won', 'the', 'Silver', 'Bear', 'for', 'Best', 'Actor', 'and', 'Luhrmann', 'won', 'the', 'Alfred', 'Bauer', 'Prize', '.'], 'ner_tags': ['O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O', 'O', 'O', 'B-person', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-person', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O']}
|
| 27 |
+
{'id': '26', 'tokens': ['Nin', 'was', 'a', 'friend', ',', 'and', 'in', 'some', 'cases', 'lover', ',', 'of', 'many', 'literary', 'figures', ',', 'including', 'Henry', 'Miller', ',', 'John', 'Steinbeck', ',', 'Antonin', 'Artaud', ',', 'Edmund', 'Wilson', ',', 'Gore', 'Vidal', ',', 'James', 'Agee', ',', 'James', 'Leo', 'Herlihy', ',', 'and', 'Lawrence', 'Durrell', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-writer', 'I-writer', 'O']}
|
| 28 |
+
{'id': '27', 'tokens': ['These', 'include', 'the', 'Charles', 'Dickens', 'Museum', 'in', 'London', ',', 'the', 'historic', 'home', 'where', 'he', 'wrote', 'Oliver', 'Twist', ',', 'The', 'Pickwick', 'Papers', 'and', 'Nicholas', 'Nickleby', ';', 'and', 'the', 'Charles', 'Dickens', 'Birthplace', 'Museum', 'in', 'Portsmouth', ',', 'the', 'house', 'in', 'which', 'he', 'was', 'born', '.'], 'ner_tags': ['O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'B-book', 'I-book', 'I-book', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'I-location', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 29 |
+
{'id': '28', 'tokens': ['It', 'tied', 'with', 'Roger', 'Zelazny', "'", 's', 'This', 'Immortal', 'for', 'the', 'Hugo', 'Award', 'in', '1966', ','], 'ner_tags': ['O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O']}
|
| 30 |
+
{'id': '29', 'tokens': ['Her', 'stage', 'credits', 'include', 'Norman', 'Mailer', "'", 's', 'The', 'Deer', 'Park', ',', 'Israel', 'Horovitz', "'", 's', 'The', 'Indian', 'Wants', 'the', 'Bronx', ',', 'Neil', 'Simon', "'s", 'The', 'Good', 'Doctor', 'and', 'Joseph', 'Papp', "'", 's', '1974', 'Richard', 'III', 'at', 'the', 'Lincoln', 'Center', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'O', 'B-book', 'I-book', 'I-book', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-location', 'I-location', 'O']}
|
| 31 |
+
{'id': '30', 'tokens': ['In', 'The', 'Crisis', 'magazine', 'in', '1943', ',', 'Harold', 'Preece', 'criticized', 'Hurston', 'for', 'her', 'perpetuation', 'of', 'Negro', 'primitivism', 'in', 'order', 'to', 'advance', 'her', 'own', 'literary', 'career', '.'], 'ner_tags': ['O', 'B-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 32 |
+
{'id': '31', 'tokens': ['Most', 'notably', ',', 'she', 'was', 'the', 'food', 'editor', 'of', 'The', 'New', 'York', 'Times', 'Magazine', ',', 'the', 'editor', 'of', 'T', 'Living', ',', 'a', 'quarterly', 'publication', 'of', 'The', 'New', 'York', 'Times', ',', 'author', 'of', 'The', 'Essential', 'New', 'York', 'Times', 'Cookbook', 'which', 'was', 'a', 'New', 'York', 'Times', 'bestseller', ',', 'and', 'co-founder', 'and', 'CEO', 'of', 'Food52', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'I-magazine', 'I-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O']}
|
| 33 |
+
{'id': '32', 'tokens': ['He', 'was', 'also', 'an', 'admirer', 'of', 'Richard', 'Condon', ',', 'author', 'of', 'The', 'Manchurian', 'Candidate', '(', '1959', ')', ',', 'Prizzi', "'s", 'Honor', '(', '1982', ')', ',', 'and', 'numerous', 'other', 'novels', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O']}
|
| 34 |
+
{'id': '33', 'tokens': ['He', 'also', 'gave', 'a', 'lecture', 'at', 'the', 'Beethovensaal', 'in', 'Berlin', 'on', '13', 'October', '1922', ',', 'which', 'appeared', 'in', 'Neue', 'Rundschau', 'in', 'November', '1922', 'in', 'which', 'he', 'developed', 'his', 'eccentric', 'defence', 'of', 'the', 'Republic', ',', 'based', 'on', 'extensive', 'close', 'readings', 'of', 'Novalis', 'and', 'Walt', 'Whitman', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'B-writer', 'I-writer', 'O']}
|
| 35 |
+
{'id': '34', 'tokens': ['One', 'of', 'his', 'poems', ',', 'Ikke', 'Bødlen', ',', 'was', 'featured', 'as', 'one', 'of', 'the', 'best', 'poems', 'on', 'Human', 'Rights', 'on', 'a', '1979', 'book', 'published', 'by', 'Amnesty', 'International', 'Denmark', ',', 'and', 'would', 'be', 'later', 'translated', 'into', 'the', 'first', 'verse', 'of', 'Roger', 'Waters', "'", 'song', 'Each', 'Small', 'Candle', '.'], 'ner_tags': ['O', 'O', 'O', 'B-literarygenre', 'O', 'B-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'B-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O']}
|
| 36 |
+
{'id': '35', 'tokens': ['Anthony', 'Boucher', ',', 'reviewing', 'the', 'volume', 'in', 'The', 'Magazine', 'of', 'Fantasy', '&', 'Science', 'Fiction', ',', 'wrote', 'that', 'The', 'Two', 'Towers', 'makes', 'inordinate', 'demands', 'upon', 'the', 'patience', 'of', 'its', 'readers', 'with', 'passages', 'which', 'could', 'be', 'lopped', 'away', 'without', 'affecting', 'form', 'or', 'content', '.'], 'ner_tags': ['B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'I-magazine', 'I-magazine', 'I-magazine', 'I-magazine', 'I-magazine', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 37 |
+
{'id': '36', 'tokens': ['See', 'Gubbinal', 'and', 'Nuances', 'of', 'a', 'Theme', 'by', 'Williams', 'for', 'comparisons', '.'], 'ner_tags': ['O', 'B-poem', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O', 'O']}
|
| 38 |
+
{'id': '37', 'tokens': ['Cuarón', "'s", 'feature', 'Children', 'of', 'Men', ',', 'an', 'adaptation', 'of', 'the', 'P.', 'D.', 'James', 'The', 'Children', 'of', 'Men', 'starring', 'Clive', 'Owen', ',', 'Julianne', 'Moore', 'and', 'Michael', 'Caine', ',', 'received', 'wide', 'critical', 'acclaim', ',', 'including', 'three', 'Academy', 'Awards', 'nominations', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O']}
|
| 39 |
+
{'id': '38', 'tokens': ['According', 'to', 'Willmott', ',', 'Yeats', "'s", 'poems', 'often', 'move', 'from', 'the', 'world', 'of', 'social', 'interaction', 'to', 'a', 'place', 'where', 'the', 'individual', 'finds', 'seclusion', ',', 'as', 'is', 'also', 'the', 'case', 'in', 'the', 'pastoral', 'Yeats', "'s", 'earlier', 'poems', 'The', 'Lake', 'Isle', 'of', 'Innisfree', ',', 'The', 'Song', 'of', 'the', 'Happy', 'Shepherd', ',', 'and', 'The', 'Sad', 'Shepherd', '.'], 'ner_tags': ['O', 'O', 'B-writer', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O']}
|
| 40 |
+
{'id': '39', 'tokens': ['Robert', 'Caro', 'has', 'cited', 'it', 'as', 'the', 'strongest', 'influence', 'on', 'The', 'Power', 'Broker', ',', 'his', 'Pulitzer', 'Prize', '-winning', 'biography', 'of', 'Robert', 'Moses', ',', 'though', 'Caro', 'does', 'not', 'mention', 'Jacobs', 'by', 'name', 'even', 'once', 'in', 'the', 'book', 'despite', 'Jacobs', "'", 'battles', 'with', 'Moses', 'over', 'his', 'proposed', 'Lower', 'Manhattan', 'Expressway', '.'], 'ner_tags': ['B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O']}
|
| 41 |
+
{'id': '40', 'tokens': ['Gravity', "'s", 'Rainbow', 'shared', 'the', '1974', 'National', 'Book', 'Award', 'with', 'A', 'Crown', 'of', 'Feathers', 'and', 'Other', 'Stories', 'by', 'Isaac', 'Bashevis', 'Singer', '(', 'split', 'award', ')', '.'], 'ner_tags': ['B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O']}
|
| 42 |
+
{'id': '41', 'tokens': ['The', 'original', 'Chanson', 'd', "'Antioche", 'is', 'lost', ',', 'but', 'it', 'was', 'edited', 'in', 'the', '12th', 'century', 'by', 'Graindor', 'de', 'Douai', ',', 'who', 'also', 'edited', 'the', 'Chanson', 'de', 'Jérusalem', ',', 'and', 'possibly', 'wrote', 'the', 'Chanson', 'des', 'Chétifs', 'himself', '.'], 'ner_tags': ['O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O']}
|
| 43 |
+
{'id': '42', 'tokens': ['Although', 'not', 'accessible', 'for', 'years', 'within', 'Germany', 'to', 'comply', 'with', 'a', 'court', 'order', 'from', 'S.', 'Fischer', 'Verlag', 'regarding', 'the', 'works', 'of', 'Heinrich', 'Mann', ',', 'Thomas', 'Mann', 'and', 'Alfred', 'Döblin', ',', 'Project', 'Gutenberg', 'is', 'once', 'more', 'accessible', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O']}
|
| 44 |
+
{'id': '43', 'tokens': ['Darkness', 'at', 'Noon', 'for', 'the', 'New', 'Statesman', 'in', '1941', ',', 'saying', ':'], 'ner_tags': ['B-book', 'I-book', 'I-book', 'O', 'O', 'B-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'O']}
|
| 45 |
+
{'id': '44', 'tokens': ['The', 'Han', 'dynasty', 'Records', 'of', 'the', 'Grand', 'Historian', 'records', 'that', 'it', 'had', 'already', 'become', 'a', 'place', 'of', 'pilgrimage', 'for', 'ministers', '.'], 'ner_tags': ['O', 'B-country', 'I-country', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 46 |
+
{'id': '45', 'tokens': ['In', '1960', ',', 'aged', '42', ',', 'he', 'approached', 'Aleksandr', 'Tvardovsky', ',', 'a', 'poet', 'and', 'the', 'chief', 'editor', 'of', 'the', 'Novy', 'Mir', 'magazine', ',', 'with', 'the', 'manuscript', 'of', 'One', 'Day', 'in', 'the', 'Life', 'of', 'Ivan', 'Denisovich', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O']}
|
| 47 |
+
{'id': '46', 'tokens': ['The', 'first', 'writer', 'to', 'use', 'the', 'term', 'classic', 'was', 'Aulus', 'Gellius', ',', 'a', '2nd-century', 'Ancient', 'Rome', 'writer', 'who', ',', 'in', 'the', 'miscellany', 'Noctes', 'Atticae', '(', '19', ',', '8', ',', '15', ')', ',', 'refers', 'to', 'a', 'writer', 'as', 'a', 'classicus', 'scriptor', ',', 'non', 'proletarius', '(', 'A', 'distinguished', ',', 'not', 'a', 'commonplace', 'writer', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 48 |
+
{'id': '47', 'tokens': ['Dickens', 'has', 'been', 'praised', 'by', 'many', 'of', 'his', 'fellow', 'writers', '-', 'from', 'Leo', 'Tolstoy', 'to', 'George', 'Orwell', ',', 'G.', 'K.', 'Chesterton', ',', 'and', 'Tom', 'Wolfe', '-', 'for', 'his', 'realism', ',', 'comedy', ',', 'prose', 'style', ',', 'unique', 'characterisations', ',', 'and', 'social', 'criticism', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 49 |
+
{'id': '48', 'tokens': ['Hughes', 'wrote', 'of', 'inequality', '(', 'I', ',', 'Too', ')', ',', 'of', 'resilience', '(', 'Mother', 'to', 'Son', 'and', 'The', 'Negro', 'Speaks', 'of', 'Rivers', ')', ',', 'of', 'pride', '(', 'My', 'People', ')', ',', 'of', 'hope', '(', 'Freedom', "'s", 'Plow', ')', ',', 'and', 'of', 'music', '(', 'The', 'Trumpet', 'Player', 'and', 'Juke', 'Box', 'Love', 'Song', ')', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O']}
|
| 50 |
+
{'id': '49', 'tokens': ['Fry', 'helped', 'to', 'fund', 'a', '1988', 'London', 're-staging', 'of', 'Stanshall', "'s", 'Stinkfoot', ',', 'a', 'Comic', 'Opera', ',', 'written', 'by', 'Vivian', 'and', 'Ki', 'Longfellow', 'for', 'the', 'Bristol', '-based', 'The', 'Thekla', '.'], 'ner_tags': ['B-person', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'O', 'B-writer', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'B-writer', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-location', 'O', 'B-location', 'I-location', 'O']}
|
| 51 |
+
{'id': '50', 'tokens': ['Another', 'Gruelle', 'family', 'friends', 'was', 'Hoosier', 'poet', 'James', 'Whitcomb', 'Riley', ',', 'whose', 'poems', 'The', 'Elf-Child', ',', 'later', 'titled', 'Little', 'Orphant', 'Annie', '!', '--', 'Orphant', 'is', 'correct', '--', 'not', 'the', 'comic', 'strip--', '(', '1885', ')', ',', 'and', 'The', 'Raggedy', 'Man', '(', '1888', ')', ',', 'eventually', 'formed', 'the', 'name', 'for', 'John', 'Gruelle', "'s", 'iconic', 'Raggedy', 'Ann', 'character', '.'], 'ner_tags': ['O', 'B-person', 'O', 'O', 'O', 'B-writer', 'I-writer', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-literarygenre', 'B-poem', 'I-poem', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O']}
|
| 52 |
+
{'id': '51', 'tokens': ['In', '1927', 'Lu', 'was', 'considered', 'for', 'the', 'Nobel', 'Prize', 'in', 'Literature', ',', 'for', 'the', 'short', 'story', 'The', 'TRUE', 'Story', 'of', 'Ah', 'Q', ',', 'despite', 'a', 'poor', 'English', 'translation', 'and', 'annotations', 'that', 'were', 'nearly', 'double', 'the', 'size', 'of', 'the', 'text.', 'Kowallis', '3', 'Lu', 'rejected', 'the', 'possibility', 'of', 'accepting', 'the', 'nomination', '.'], 'ner_tags': ['O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 53 |
+
{'id': '52', 'tokens': ['Sagan', 'and', 'his', 'works', 'received', 'numerous', 'awards', 'and', 'honors', ',', 'including', 'the', 'NASA', 'Distinguished', 'Public', 'Service', 'Medal', ',', 'the', 'National', 'Academy', 'of', 'Sciences', 'Public', 'Welfare', 'Medal', ',', 'the', 'Pulitzer', 'Prize', 'for', 'General', 'Non-Fiction', 'for', 'his', 'book', 'The', 'Dragons', 'of', 'Eden', ',', 'and', ',', 'regarding', 'Cosmos', ':', 'A', 'Personal', 'Voyage', ',', 'two', 'Emmy', 'Award', 's', ',', 'the', 'Peabody', 'Award', ',', 'and', 'the', 'Hugo', 'Award', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'B-award', 'I-award', 'O']}
|
| 54 |
+
{'id': '53', 'tokens': ['Jackie', 'was', 'a', 'play-by-play', 'announcer', 'for', 'the', 'Luge', 'at', 'the', '1976', 'Winter', 'Olympics', 'and', 'the', 'Equestrian', 'at', 'the', '1976', 'Summer', 'Olympics', '(', 'partnered', 'with', 'Chris', 'Schenkel', ')', 'on', 'ABC', "'s", 'Wide', 'World', 'of', 'Sports', '.'], 'ner_tags': ['B-person', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O']}
|
| 55 |
+
{'id': '54', 'tokens': ['Augustine', 'was', 'born', 'in', 'the', 'year', '354', 'AD', 'in', 'the', 'municipium', 'of', 'Thagaste', '(', 'now', 'Souk', 'Ahras', ',', 'Algeria', ')', 'in', 'the', 'Roman', 'province', 'of', 'Numidia', '.'], 'ner_tags': ['B-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'O', 'B-location', 'I-location', 'O', 'B-country', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'I-location', 'O']}
|
| 56 |
+
{'id': '55', 'tokens': ['In', 'addition', 'to', 'writing', 'for', 'The', 'New', 'Yorker', ',', 'he', 'has', 'written', 'for', 'The', 'Atlantic', 'Monthly', 'and', 'National', 'Geographic', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'O', 'B-magazine', 'I-magazine', 'I-magazine', 'O', 'B-magazine', 'I-magazine', 'O']}
|
| 57 |
+
{'id': '56', 'tokens': ['In', '2012', ',', 'Nichols', 'won', 'the', 'Best', 'Direction', 'of', 'a', 'Play', 'Tony', 'Award', 'Award', 'for', 'Arthur', 'Miller', "'", 's', 'Death', 'of', 'a', 'Salesman', '.'], 'ner_tags': ['O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'O']}
|
| 58 |
+
{'id': '57', 'tokens': ['To', 'please', 'his', 'wife', ',', 'Diederichs', 'agreed', 'to', 'publish', 'Hesse', "'s", 'collection', 'of', 'prose', 'entitled', 'One', 'Hour', 'After', 'Midnight', 'in', '1898', '(', 'although', 'it', 'is', 'dated', '1899', ')', '.Freedman', '(', '1978', ')', 'pp.', '78-80', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 59 |
+
{'id': '58', 'tokens': ['In', 'Far', 'from', 'the', 'Madding', 'Crowd', ',', 'Hardy', 'first', 'introduced', 'the', 'idea', 'of', 'calling', 'the', 'region', 'in', 'the', 'west', 'of', 'England', ',', 'where', 'his', 'novels', 'are', 'set', ',', 'Wessex', '.'], 'ner_tags': ['O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'B-literarygenre', 'O', 'O', 'O', 'B-country', 'O']}
|
| 60 |
+
{'id': '59', 'tokens': ['Charles', 'spent', 'time', 'outdoors', ',', 'but', 'also', 'read', 'voraciously', ',', 'including', 'the', 'picaresque', 'novel', 's', 'of', 'Tobias', 'Smollett', 'and', 'Henry', 'Fielding', ',', 'as', 'well', 'as', 'Robinson', 'Crusoe', 'and', 'Gil', 'Blas', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'B-book', 'I-book', 'O']}
|
| 61 |
+
{'id': '60', 'tokens': ['Paul', 'Christopher', ',', 'J.', 'D.', 'Salinger', "'", 's', 'Holden', 'Caulfield', ',', 'and', 'J.', 'P.', 'Donleavy', "'", 's', 'Sebastion', 'Dangerfield', 'in', 'The', 'Ginger', 'Man', '(', '1955', ')', 'are', 'among', 'the', 'post-World', 'War', 'II', 'literary', 'heroes', 'who', 'have', 'stymied', 'Hollywood', 'efforts', 'to', 'depict', 'them.see', 'J.P.', 'Donnelley', ',', '91', ',', 'Author', 'Who', 'Stirred', 'Controversy', 'With', "'", 'Ginger', 'Man', ',', "'", 'Dies', ',', 'The', 'New', 'York', 'Times', ',', 'September', '14', ',', '2017', '.'], 'ner_tags': ['B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-person', 'I-person', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 62 |
+
{'id': '61', 'tokens': ['1789', ')', 'with', 'the', 'addition', 'of', 'five', 'of', 'his', 'poems', ':', 'the', 'Introduction', 'and', 'The', 'Divine', 'Image', 'from', 'the', 'Songs', 'of', 'Innocence', '(', '1789', ')', ',', 'The', 'Tyger', 'and', 'A', 'Divine', 'Image', 'from', 'the', 'Songs', 'of', 'Experience', '(', '1789-1794', ')', ',', 'and', 'A', 'Cradle', 'Song', 'from', 'his', 'Note-book', '(', 'Manuscript', 'Dante', 'Gabriel', 'Rossetti', ',', '1793', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O']}
|
| 63 |
+
{'id': '62', 'tokens': ['Under', 'the', 'succeeding', 'Han', 'dynasty', 'and', 'Tang', 'dynasty', 'dynasties', ',', 'Confucian', 'ideas', 'gained', 'even', 'more', 'widespread', 'prominence', '.'], 'ner_tags': ['O', 'O', 'O', 'B-country', 'I-country', 'O', 'B-country', 'I-country', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 64 |
+
{'id': '63', 'tokens': ['In', '2012', ',', 'when', 'the', 'Nobel', 'Prize', 'Records', 'were', 'opened', 'after', '50', 'years', ',', 'it', 'was', 'revealed', 'that', 'Durrell', 'had', 'been', 'on', 'a', 'shortlist', 'of', 'authors', 'considered', 'for', 'the', '1962', 'Nobel', 'Prize', 'in', 'Literature', ',', 'along', 'with', 'American', 'John', 'Steinbeck', '(', 'winner', ')', ',', 'British', 'poet', 'Robert', 'Graves', ',', 'French', 'writer', 'Jean', 'Anouilh', ',', 'and', 'the', 'Danish', 'Karen', 'Blixen', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-misc', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'B-writer', 'I-writer', 'O', 'B-misc', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'B-misc', 'B-writer', 'I-writer', 'O']}
|
| 65 |
+
{'id': '64', 'tokens': ['His', 'time-travel', 'novel', 'Timescape', '(', '1980', ')', 'won', 'both', 'the', 'Nebula', 'Award', 'and', 'the', 'John', 'W.', 'Campbell', 'Memorial', 'Award', '.'], 'ner_tags': ['O', 'O', 'B-literarygenre', 'B-book', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 66 |
+
{'id': '65', 'tokens': ['In', '1985', ',', 'Spielberg', 'released', 'The', 'Color', 'Purple', ',', 'an', 'adaptation', 'of', 'Alice', 'Walker', "'", 's', 'Pulitzer', 'Prize', '-winning', 'The', 'Color', 'Purple', ',', 'about', 'a', 'generation', 'of', 'empowered', 'African-American', 'women', 'during', 'depression-era', 'America', '.'], 'ner_tags': ['O', 'O', 'O', 'B-writer', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-award', 'I-award', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'B-country', 'O']}
|
| 67 |
+
{'id': '66', 'tokens': ['It', 'is', 'largely', 'based', 'on', 'the', 'Alexandreis', 'of', 'Walter', 'of', 'Châtillon', ',', 'but', 'also', 'contains', 'many', 'fantastical', 'elements', 'common', 'to', 'the', 'Alexander', 'romance', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O']}
|
| 68 |
+
{'id': '67', 'tokens': ['For', 'the', 'general', 'reader', ',', 'Jonson', "'s", 'reputation', 'rests', 'on', 'a', 'few', 'lyrics', 'that', ',', 'though', 'brief', ',', 'are', 'surpassed', 'for', 'grace', 'and', 'precision', 'by', 'very', 'few', 'Renaissance', 'poems', ':', 'On', 'My', 'First', 'Sonne', ';', 'To', 'Celia', ';', 'To', 'Penshurst', ';', 'and', 'the', 'epitaph', 'on', 'Salomon', 'Pavy', ',', 'a', 'boy', 'player', 'abducted', 'from', 'his', 'parents', 'who', 'acted', 'in', 'Jonson', "'s", 'plays', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'O', 'B-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O']}
|
| 69 |
+
{'id': '68', 'tokens': ['During', 'most', 'of', 'his', 'career', ',', 'Orwell', 'was', 'best', 'known', 'for', 'his', 'journalism', ',', 'in', 'essays', ',', 'reviews', ',', 'columns', 'in', 'newspapers', 'and', 'magazines', 'and', 'in', 'his', 'books', 'of', 'reportage', ':', 'Down', 'and', 'Out', 'in', 'Paris', 'and', 'London', '(', 'describing', 'a', 'period', 'of', 'poverty', 'in', 'these', 'cities', ')', ',', 'The', 'Road', 'to', 'Wigan', 'Pier', '(', 'describing', 'the', 'living', 'conditions', 'of', 'the', 'poor', 'in', 'northern', 'England', ',', 'and', 'class', 'division', 'generally', ')', 'and', 'Homage', 'to', 'Catalonia', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O']}
|
| 70 |
+
{'id': '69', 'tokens': ['A', 'late', '(', '1890s', ')', 'reference', 'to', 'the', 'urban', 'legend', 'of', 'the', 'murderous', 'barber', 'can', 'be', 'found', 'in', 'the', 'poem', 'by', 'the', 'Australian', 'bush', 'poet', 'Banjo', 'Paterson', '-', 'The', 'Man', 'from', 'Ironbark', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'O', 'B-misc', 'O', 'O', 'B-person', 'I-person', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'O']}
|
| 71 |
+
{'id': '70', 'tokens': ['This', 'acted', 'as', 'a', 'prelude', 'to', 'the', 'release', 'the', 'following', 'year', 'of', 'The', 'Whitsun', 'Weddings', ',', 'the', 'volume', 'which', 'cemented', 'his', 'reputation', ';', 'almost', 'immediately', 'after', 'its', 'publication', 'he', 'was', 'granted', 'a', 'Fellowship', 'of', 'the', 'Royal', 'Society', 'of', 'Literature', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O']}
|
| 72 |
+
{'id': '71', 'tokens': ['Bova', 'holds', 'the', 'position', 'of', 'President', 'Emeritus', 'of', 'the', 'National', 'Space', 'Society', 'and', 'served', 'as', 'President', 'of', 'Science', 'Fiction', 'and', 'Fantasy', 'Writers', 'of', 'America', '(', 'SFWA', ')', 'from', '1990', 'to', '1992', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 73 |
+
{'id': '72', 'tokens': ['This', 'strand', 'continues', 'in', 'Latin', 'accounts', 'of', 'the', 'Trojan', 'War', 'by', 'writers', 'such', 'as', 'Dictys', 'Cretensis', 'and', 'Dares', 'Phrygius', 'and', 'in', 'Benoît', 'de', 'Sainte-Maure', "'", 's', 'Roman', 'de', 'Troie', 'and', 'Guido', 'delle', 'Colonne', "'", 's', 'Historia', 'destructionis', 'Troiae', ',', 'which', 'remained', 'the', 'most', 'widely', 'read', 'and', 'retold', 'versions', 'of', 'the', 'Matter', 'of', 'Troy', 'until', 'the', '17th', 'century', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'B-event', 'I-event', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O']}
|
| 74 |
+
{'id': '73', 'tokens': ['Other', 'works', 'soon', 'followed', ',', 'including', 'A', 'Tale', 'of', 'Two', 'Cities', '(', '1859', ')', 'and', 'Great', 'Expectations', '(', '1861', ')', ',', 'which', 'were', 'resounding', 'successes', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 75 |
+
{'id': '74', 'tokens': ['In', '1952', ',', 'Capp', 'and', 'his', 'characters', 'graced', 'the', 'covers', 'of', 'both', 'Life', 'and', 'TV', 'Guide', '.'], 'ner_tags': ['O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-magazine', 'O', 'B-magazine', 'I-magazine', 'O']}
|
| 76 |
+
{'id': '75', 'tokens': ['Nobel', 'Prize', '-winning', 'writer', 'Isaac', 'Bashevis', 'Singer', 'translated', 'some', 'of', 'his', 'works', '.'], 'ner_tags': ['B-award', 'I-award', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 77 |
+
{'id': '76', 'tokens': ['The', 'story', 'of', 'a', 'powerful', '(', 'fairy', ')', 'woman', 'who', 'takes', 'a', 'lover', 'on', 'condition', 'that', 'he', 'obey', 'a', 'particular', 'prohibition', 'is', 'common', 'in', 'medieval', 'poetry', ':', 'the', 'French', 'lais', 'of', 'Desiré', ',', 'Graelent', ',', 'and', 'Guingamor', ',', 'and', 'Chrétien', 'de', 'Troyes', "'", 's', 'romance', 'Yvain', ',', 'the', 'Knight', 'of', 'the', 'Lion', ',', 'all', 'share', 'similar', 'plot', 'elements', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'B-literarygenre', 'O', 'B-poem', 'O', 'B-poem', 'O', 'O', 'B-poem', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 78 |
+
{'id': '77', 'tokens': ['It', 'was', 'nominated', 'for', 'seven', 'Academy', 'Awards', 'and', 'won', 'four', ',', 'including', 'Academy', 'Award', 'for', 'Best', 'Picture', 'and', 'Academy', 'Award', 'for', 'Best', 'Original', 'Screenplay', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 79 |
+
{'id': '78', 'tokens': ['Also', 'in', '2007', 'he', 'provided', 'consulting', 'services', 'to', 'Silver', 'Pictures', 'on', 'the', 'film', 'adaptation', 'of', 'Richard', 'K.', 'Morgan', "'", 's', 'hardboiled', 'cyberpunk', 'science-fiction', 'novel', 'Altered', 'Carbon', '(', '2002', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'B-book', 'I-book', 'O', 'O', 'O', 'O']}
|
| 80 |
+
{'id': '79', 'tokens': ['In', 'Beyond', 'Good', 'and', 'Evil', 'and', 'On', 'the', 'Genealogy', 'of', 'Morality', ',', 'Nietzsche', "'s", 'genealogical', 'account', 'of', 'the', 'development', 'of', 'modern', 'moral', 'systems', 'occupies', 'a', 'central', 'place', '.'], 'ner_tags': ['O', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 81 |
+
{'id': '80', 'tokens': ['Due', 'to', 'pressure', 'by', 'fans', 'on', 'Asimov', 'to', 'write', 'another', 'book', 'in', 'his', 'Foundation', 'series', ',', 'he', 'did', 'so', 'with', 'Foundation', "'s", 'Edge', '(', '1982', ')', 'and', 'Foundation', 'and', 'Earth', '(', '1986', ')', ',', 'and', 'then', 'went', 'back', 'to', 'before', 'the', 'original', 'trilogy', 'with', 'Prelude', 'to', 'Foundation', '(', '1988', ')', 'and', 'Forward', 'the', 'Foundation', '(', '1992', ')', ',', 'his', 'last', 'novel', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O']}
|
| 82 |
+
{'id': '81', 'tokens': ['Swift', 'is', 'remembered', 'for', 'works', 'such', 'as', 'A', 'Tale', 'of', 'a', 'Tub', '(', '1704', ')', ',', 'An', 'Argument', 'Against', 'Abolishing', 'Christianity', '(', '1712', ')', ',', 'Gulliver', "'s", 'Travels', '(', '1726', ')', ',', 'and', 'A', 'Modest', 'Proposal', '(', '1729', ')', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O']}
|
| 83 |
+
{'id': '82', 'tokens': ['Seymour', 'Hersh', ',', 'Nixon', "'s", 'Last', 'Cover-Up', ':', 'The', 'Tapes', 'He', 'Wants', 'the', 'Archives', 'to', 'Suppress', ';', 'The', 'New', 'Yorker', ',', 'December', '14', ',', '1992', ',', 'pp.', '80-81', 'In', 'passing', 'sentence', 'in', 'February', '1972', ',', 'the', 'judge', 'rejected', 'the', 'D.A.', "'", 's', 'motion', 'that', 'Capp', 'agree', 'to', 'undergo', 'psychiatric', 'treatment', '.'], 'ner_tags': ['B-writer', 'I-writer', 'O', 'B-person', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'B-magazine', 'I-magazine', 'I-magazine', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 84 |
+
{'id': '83', 'tokens': ['To', 'Dolapdere', ',', 'he', 'sarcastically', 'gave', 'the', 'name', 'Cholera', '(', 'Kolera', 'in', 'Turkish', ')', 'in', 'Ağır', 'Roman', ',', 'thereby', 'recalling', 'both', 'its', 'shabbiness', 'and', 'the', 'fact', 'that', 'the', 'great', 'Poland', 'poet', 'Adam', 'Mickiewicz', 'died', 'there', 'from', 'the', 'cholera', 'in', '1855', '.'], 'ner_tags': ['O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'B-misc', 'O', 'B-misc', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O']}
|
| 85 |
+
{'id': '84', 'tokens': ['He', 'was', 'influenced', 'by', 'the', 'Marxist', 'playwright', 'Bertolt', 'Brecht', 'and', 'was', 'invited', 'by', 'Brecht', 'to', 'be', 'his', 'assistant', 'at', 'the', 'East', 'Berlin', 'State', 'Opera', 'but', 'turned', 'down', 'the', 'offer', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 86 |
+
{'id': '85', 'tokens': ['The', 'poems', 'he', 'had', 'written', 'during', 'his', 'time', 'in', 'prison', 'were', 'so', 'effective', 'that', 'Dudley', 'Randall', ',', 'a', 'poet', 'and', 'owner', 'of', 'Broadside', 'Press', ',', 'published', 'Knight', "'s", 'first', 'volume', 'of', 'verse', ',', 'Poems', 'from', 'Prison', ',', 'and', 'hailed', 'Knight', 'as', 'one', 'of', 'the', 'major', 'poets', 'of', 'the', 'Black', 'Arts', 'Movement', '.'], 'ner_tags': ['O', 'B-literarygenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O']}
|
| 87 |
+
{'id': '86', 'tokens': ['Verne', "'s", 'collaboration', 'with', 'the', 'publisher', 'Pierre-Jules', 'Hetzel', 'led', 'to', 'the', 'creation', 'of', 'the', 'Voyages', 'extraordinaires', ',', 'a', 'widely', 'popular', 'series', 'of', 'scrupulously', 'researched', 'adventure', 'novels', 'including', 'Journey', 'to', 'the', 'Center', 'of', 'the', 'Earth', '(', '1864', ')', ',', 'Twenty', 'Thousand', 'Leagues', 'Under', 'the', 'Sea', '(', '1870', ')', ',', 'and', 'Around', 'the', 'World', 'in', 'Eighty', 'Days', '(', '1873', ')', '.'], 'ner_tags': ['B-writer', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O']}
|
| 88 |
+
{'id': '87', 'tokens': ['With', 'his', 'poem', 'Yo', 'soy', 'Joaquín', ',', 'known', 'in', 'English', 'as', 'I', 'Am', 'Joaquin', ',', 'Gonzales', 'shared', 'his', 'new', 'cosmological', 'vision', 'of', 'the', 'Chicano', ',', 'who', 'was', 'neither', 'Indian', 'nor', 'European', ',', 'neither', 'Mexican', 'nor', 'American', ',', 'but', 'a', 'combination', 'of', 'all', 'the', 'conflicting', 'identities', '.'], 'ner_tags': ['O', 'O', 'B-literarygenre', 'B-poem', 'I-poem', 'I-poem', 'O', 'O', 'O', 'B-misc', 'O', 'B-poem', 'I-poem', 'I-poem', 'O', 'B-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-poem', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'B-misc', 'O', 'O', 'B-misc', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 89 |
+
{'id': '88', 'tokens': ['In', 'response', 'to', 'what', 'at', 'least', 'appeared', 'to', 'be', 'a', 'blatant', 'snub', 'by', 'his', 'own', 'countrymen', ',', 'the', 'director', 'Sidney', 'Lumet', 'led', 'a', 'successful', 'campaign', 'to', 'have', 'Kurosawa', 'receive', 'an', 'Oscar', 'nomination', 'for', 'Academy', 'Award', 'for', 'Best', 'Director', 'that', 'year', '(', 'Sydney', 'Pollack', 'ultimately', 'won', 'the', 'award', 'for', 'directing', 'Out', 'of', 'Africa', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'O', 'O', 'B-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O']}
|
| 90 |
+
{'id': '89', 'tokens': ['After', 'a', '1995', 'staging', 'at', 'the', 'La', 'Jolla', 'Playhouse', ',', 'he', 'retained', 'David', 'Mamet', 'to', 'help', 'rework', 'the', 'book', 'before', 'its', 'relaunch', 'on', 'the', 'Chicago', 'Goodman', 'Theatre', 'mainstage', 'in', '1996', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O']}
|
| 91 |
+
{'id': '90', 'tokens': ['The', 'period', 'around', 'World', 'War', 'II', 'also', 'saw', 'the', 'publication', 'of', 'the', 'time', 'travel', 'novel', 'Lest', 'Darkness', 'Fall', 'by', 'L.', 'Sprague', 'de', 'Camp', ',', 'in', 'which', 'an', 'American', 'academic', 'travels', 'to', 'Italy', 'at', 'the', 'time', 'of', 'the', 'Byzantine', 'invasion', 'of', 'the', 'Ostrogoths', '.'], 'ner_tags': ['O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'I-literarygenre', 'B-book', 'I-book', 'I-book', 'O', 'B-writer', 'I-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'B-misc', 'O']}
|
| 92 |
+
{'id': '91', 'tokens': ['His', 'most', 'famous', 'poem', 'is', 'The', 'Airs', 'of', 'Palestine', '.'], 'ner_tags': ['O', 'O', 'O', 'B-literarygenre', 'O', 'B-poem', 'I-poem', 'I-poem', 'I-poem', 'O']}
|
| 93 |
+
{'id': '92', 'tokens': ['A', 'tribute', 'show', 'to', 'Wilson', ',', 'organized', 'by', 'Coldcut', 'and', 'Mixmaster', 'Morris', 'and', 'performed', 'in', 'London', 'as', 'a', 'part', 'of', 'the', 'Ether', '7', 'Festival', 'held', 'at', 'the', 'Queen', 'Elizabeth', 'Hall', 'on', 'March', '18', ',', '2007', ',', 'also', 'included', 'Ken', 'Campbell', ',', 'Bill', 'Drummond', 'and', 'Alan', 'Moore', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-writer', 'O', 'O', 'O', 'B-person', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'O']}
|
| 94 |
+
{'id': '93', 'tokens': ['Former', 'House', 'Speaker', 'Newt', 'Gingrich', 'and', 'William', 'R.', 'Forstchen', 'have', 'written', 'a', 'novel', ',', '1945', ',', 'in', 'which', 'the', 'US', 'defeated', 'Empire', 'of', 'Japan', 'but', 'not', 'Nazi', 'Germany', 'in', 'World', 'War', 'II', ',', 'resulting', 'in', 'a', 'Cold', 'War', 'with', 'Germany', 'rather', 'than', 'the', 'Soviet', 'Union', '.'], 'ner_tags': ['O', 'B-organisation', 'O', 'B-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'B-literarygenre', 'O', 'B-book', 'O', 'O', 'O', 'O', 'B-country', 'O', 'B-country', 'I-country', 'I-country', 'O', 'O', 'B-country', 'I-country', 'O', 'B-event', 'I-event', 'I-event', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'O', 'B-country', 'O', 'O', 'O', 'B-country', 'I-country', 'O']}
|
| 95 |
+
{'id': '94', 'tokens': ['With', 'the', 'publications', 'of', 'Sense', 'and', 'Sensibility', '(', '1811', ')', ',', 'Pride', 'and', 'Prejudice', '(', '1813', ')', ',', 'Mansfield', 'Park', '(', '1814', ')', 'and', 'Emma', '(', '1816', ')', ',', 'she', 'achieved', 'success', 'as', 'a', 'published', 'writer', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'O', 'O', 'O', 'O', 'B-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 96 |
+
{'id': '95', 'tokens': ['For', 'example', ',', 'Russ', 'criticized', 'Ursula', 'K.', 'Le', 'Guin', "'", 's', '1969', 'The', 'Left', 'Hand', 'of', 'Darkness', ',', 'which', 'won', 'both', 'the', '1969', 'Nebula', 'Award', 'for', 'Best', 'Novel', 'and', '1970', 'Hugo', 'Award', 'for', 'Best', 'Novel', 'awards', 'for', 'best', 'science', 'fiction', 'novel', ',', 'arguing', 'that', 'gender', 'discriminations', 'that', 'permeated', 'science', 'fiction', 'by', 'men', 'showed', 'up', 'just', 'as', 'frequently', 'in', 'science', 'fiction', 'by', 'women', '.'], 'ner_tags': ['O', 'O', 'O', 'B-writer', 'O', 'B-writer', 'I-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'O', 'O', 'O']}
|
| 97 |
+
{'id': '96', 'tokens': ['Caterina', 'di', 'Giacomo', 'di', 'Benincasa', 'was', 'born', 'on', '25', 'March', '1347', '(', 'shortly', 'before', 'the', 'Black', 'Death', 'ravaged', 'Europe', ')', 'in', 'Siena', ',', 'Republic', 'of', 'Siena', '(', 'today', 'Italy', ')', ',', 'to', 'Lapa', 'Piagenti', ',', 'the', 'daughter', 'of', 'a', 'local', 'poet', ',', 'and', 'Giacomo', 'di', 'Benincasa', ',', 'a', 'cloth', 'dyer', 'who', 'ran', 'his', 'enterprise', 'with', 'the', 'help', 'of', 'his', 'sons', '.'], 'ner_tags': ['B-person', 'I-person', 'B-person', 'I-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-location', 'O', 'O', 'B-location', 'O', 'B-country', 'I-country', 'I-country', 'O', 'O', 'B-country', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 98 |
+
{'id': '97', 'tokens': ['These', 'include', 'the', 'Universal', 'Natural', 'History', 'and', 'Theory', 'of', 'the', 'Heavens', '(', '1755', ')', ',', 'the', 'Critique', 'of', 'Practical', 'Reason', '(', '1788', ')', ',', 'the', 'Metaphysics', 'of', 'Morals', '(', '1797', ')', ',', 'the', 'Critique', 'of', 'Judgment', '(', '1790', ')', ',', 'which', 'looks', 'at', 'aesthetics', 'and', 'teleology', ',', 'and', 'Religion', 'within', 'the', 'Bounds', 'of', 'Bare', 'Reason', '(', '1793', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'I-book', 'O', 'O', 'O', 'O']}
|
| 99 |
+
{'id': '98', 'tokens': ['His', 'interest', 'in', 'space', ',', 'however', ',', 'was', 'his', 'primary', 'focus', ',', 'especially', 'after', 'reading', 'science', 'fiction', 'stories', 'by', 'writers', 'such', 'as', 'H.', 'G.', 'Wells', 'and', 'Edgar', 'Rice', 'Burroughs', ',', 'which', 'stirred', 'his', 'imagination', 'about', 'life', 'on', 'other', 'planets', 'such', 'as', 'Mars', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-literarygenre', 'I-literarygenre', 'I-literarygenre', 'O', 'O', 'O', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'B-writer', 'I-writer', 'I-writer', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O']}
|
| 100 |
+
{'id': '99', 'tokens': ['Baron', 'Cohen', 'was', 'educated', 'at', 'The', 'Haberdashers', "'", 'Aske', "'s", 'Boys', "'", 'School', ',', 'an', 'independent', 'school', 'in', 'Elstree', ',', 'Hertfordshire', ',', 'While', 'a', 'member', 'of', 'the', 'Cambridge', 'University', 'Amateur', 'Dramatic', 'Club', ',', 'Baron', 'Cohen', 'performed', 'in', 'plays', 'such', 'as', 'Fiddler', 'on', 'the', 'Roof', 'and', 'Cyrano', 'de', 'Bergerac', ',', 'as', 'well', 'as', 'in', 'Habonim', 'Dror', 'Jewish', 'theatre', '.'], 'ner_tags': ['B-person', 'I-person', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'B-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'I-location', 'O']}
|
data/literature/validation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/music/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/music/train.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{'id': '0', 'tokens': ['In', '2003', ',', 'the', 'Stade', 'de', 'France', 'was', 'the', 'primary', 'site', 'of', 'the', '2003', 'World', 'Championships', 'in', 'Athletics', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O']}
|
| 2 |
+
{'id': '1', 'tokens': ['In', 'addition', 'to', 'relentless', 'touring', 'in', 'the', 'U.S.', 'and', 'Canada', ',', 'PUSA', 'made', 'multiple', 'tours', 'of', 'Europe', ',', 'Australia', ',', 'New', 'Zealand', 'and', 'Japan', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'B-country', 'O', 'B-band', 'O', 'O', 'O', 'O', 'B-location', 'O', 'B-country', 'O', 'B-country', 'I-country', 'O', 'B-country', 'O']}
|
| 3 |
+
{'id': '2', 'tokens': ['Barney', 'Bubbles', 'directed', 'several', 'videos', ',', 'including', 'the', 'Specials', "'", 'Ghost', 'Town', ',', 'Squeeze', "'", 's', 'Is', 'That', 'Love', 'and', 'Tempted', ',', 'Elvis', 'Costello', "'", 's', 'Clubland', 'and', 'New', 'Lace', 'Sleeves', ',', 'and', 'Fun', 'Boy', 'Three', "'", 's', 'The', 'Lunatics', '(', 'Have', 'Taken', 'Over', 'the', 'Asylum', ')', '.'], 'ner_tags': ['B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'O', 'O', 'B-song', 'I-song', 'I-song', 'O', 'B-song', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-song', 'O', 'B-song', 'I-song', 'I-song', 'O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'B-song', 'I-song', 'I-song', 'I-song', 'I-song', 'I-song', 'I-song', 'I-song', 'I-song', 'O']}
|
| 4 |
+
{'id': '3', 'tokens': ['Since', 'then', 'there', 'has', 'been', 'a', 'renaissance', 'in', 'Sacred', 'Harp', 'singing', ',', 'with', 'annual', 'conventions', 'popping', 'up', 'in', 'United', 'States', 'and', 'in', 'a', 'number', 'of', 'European', 'countries', 'recently', ',', 'including', 'the', 'United', 'Kingdom', ',', 'Germany', ',', 'Ireland', 'and', 'Poland', ',', 'as', 'well', 'as', 'in', 'Australia', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'B-country', 'I-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O']}
|
| 5 |
+
{'id': '4', 'tokens': ['Three', 'of', 'the', 'labels', 'rejected', 'her', ',', 'saying', 'that', 'audiences', 'wanted', 'pop', 'bands', 'such', 'as', 'the', 'Backstreet', 'Boys', 'and', 'the', 'Spice', 'Girls', ',', 'and', 'there', 'wasn', "'t", 'going', 'to', 'be', 'another', 'Madonna', ',', 'another', 'Debbie', 'Gibson', ',', 'or', 'another', 'Tiffany', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'B-musicalartist', 'O']}
|
| 6 |
+
{'id': '5', 'tokens': ['Notable', 'Sun', 'Ra', 'albums', 'from', 'the', '1950s', 'include', 'Sun', 'Ra', 'Visits', 'Planet', 'Earth', ',', 'Interstellar', 'Low', 'Ways', ',', 'Super-Sonic', 'Jazz', ',', 'We', 'Travel', 'the', 'Space', 'Ways', ',', 'The', 'Nubians', 'of', 'Plutonia', 'and', 'Jazz', 'In', 'Silhouette', '.'], 'ner_tags': ['O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O']}
|
| 7 |
+
{'id': '6', 'tokens': ['Stevens', "'", 'albums', 'Tea', 'for', 'the', 'Tillerman', '(', '1970', ')', 'and', 'Teaser', 'and', 'the', 'Firecat', '(', '1971', ')', 'were', 'certified', 'triple', 'platinum', 'in', 'the', 'US', 'by', 'the', 'Recording', 'Industry', 'Association', 'of', 'America', '..', 'BBC', 'News', '.'], 'ner_tags': ['B-musicalartist', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'O']}
|
| 8 |
+
{'id': '7', 'tokens': ['He', 'has', 'won', 'Top', 'New', 'Male', 'Vocalist', 'from', 'Billboard', 'in', '1992', 'and', 'from', 'Academy', 'of', 'Country', 'Music', 'in', '1993', ',', 'and', 'Vocal', 'Event', 'of', 'the', 'Year', 'from', 'the', 'Country', 'Music', 'Association', 'in', '2007', '.'], 'ner_tags': ['O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O']}
|
| 9 |
+
{'id': '8', 'tokens': ['In', '1983', ',', 'the', 'lineup', 'of', 'Verni', ',', 'Skates', ',', 'Ellsworth', ',', 'and', 'Gustafson', 'released', 'the', 'Power', 'in', 'Black', 'demo', ',', 'a', 'recording', 'that', 'made', 'as', 'much', 'impact', 'in', 'the', 'underground', 'tape', 'trading', 'circuit', 'as', 'demos', 'by', 'up-and-coming', 'Bay', 'Area', 'thrash', 'metal', 'bands', 'such', 'as', 'Exodus', 'and', 'Testament', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'B-musicalartist', 'O', 'B-musicalartist', 'O', 'O', 'B-musicalartist', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'B-band', 'O', 'B-band', 'O']}
|
| 10 |
+
{'id': '9', 'tokens': ['Their', 'style', 'has', 'been', 'described', 'as', 'Rock', 'and', 'roll', 'with', 'a', 'renegade', 'stance', ',', 'what', 'in', 'later', 'years', 'would', 'be', 'dubbed', "'", 'Punk', 'rock', "'", '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O']}
|
| 11 |
+
{'id': '10', 'tokens': ['He', 'also', 'appeared', 'with', 'RBX', ',', 'Nas', 'and', 'KRS-One', 'on', 'East', 'Coast', 'Killer', ',', 'West', 'Coast', 'Killer', 'from', 'Dr.', 'Dre', "'s", 'Dr.', 'Dre', 'Presents', 'the', 'Aftermath', 'album', ',', 'and', 'contributed', 'to', 'an', 'album', 'entitled', 'The', 'Psycho', 'Realm', 'with', 'Psycho', 'Realm', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'B-musicalartist', 'O', 'B-musicalartist', 'O', 'B-song', 'I-song', 'I-song', 'O', 'B-song', 'I-song', 'I-song', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-band', 'I-band', 'O']}
|
| 12 |
+
{'id': '11', 'tokens': ['On', '9', 'June', '1892', 'the', 'Paris', 'Opéra-Comique', 'staged', 'Les', 'Troyens', 'à', 'Carthage', '(', 'in', 'the', 'Théâtre', 'de', 'la', 'Ville', 'as', 'its', 'premiere', ')', 'and', 'witnessed', 'a', 'triumphant', 'debut', 'for', 'the', '17-year-old', 'Marie', 'Delna', 'as', 'Didon', ',', 'with', 'Stéphane', 'Lafarge', 'as', 'Énée', ',', 'conducted', 'by', 'Jules', 'Danbé', ';', 'these', 'staged', 'performances', 'of', 'Part', '2', 'continued', 'into', 'the', 'next', 'year', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-location', 'B-organisation', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-misc', 'O', 'O', 'B-person', 'I-person', 'O', 'B-misc', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 13 |
+
{'id': '12', 'tokens': ['As', 'a', 'group', ',', 'the', 'Spice', 'Girls', 'have', 'received', 'a', 'number', 'of', 'notable', 'awards', 'including', 'five', 'Brit', 'Awards', ',', 'three', 'American', 'Music', 'Awards', ',', 'three', 'MTV', 'Europe', 'Music', 'Awards', ',', 'one', 'MTV', 'Video', 'Music', 'Award', 'and', 'three', 'World', 'Music', 'Awards', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O']}
|
| 14 |
+
{'id': '13', 'tokens': ['The', 'album', 'experimented', 'with', 'a', 'diverse', 'number', 'of', 'genres', ',', 'including', 'contemporary', 'R', '&', 'B', ',', 'deep', 'house', ',', 'Swing', 'music', ',', 'Hip', 'hop', 'music', ',', 'Rock', 'music', ',', 'and', 'Pop', 'music', ',', 'with', 'Billboard', 'describing', 'each', 'as', 'being', 'delivered', 'with', 'consummate', 'skill', 'and', 'passion', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 15 |
+
{'id': '14', 'tokens': ['Chuck', 'Burgi', '(', '1991-1992', ',', '1992-1995', ',', '1996-1997', ')', ',', 'John', 'Miceli', '(', '1992', ',', '1995', ')', ',', 'John', 'O', "'Reilly", '(', '1995-1996', ')', 'and', 'Bobby', 'Rondinelli', '(', '1997-2004', ')', '.'], 'ner_tags': ['B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O']}
|
| 16 |
+
{'id': '15', 'tokens': ['In', 'addition', 'to', 'Lady', 'Antebellum', ',', 'groups', 'such', 'as', 'Herrick', ',', 'The', 'Quebe', 'Sisters', 'Band', ',', 'Little', 'Big', 'Town', ',', 'The', 'Band', 'Perry', ',', 'Gloriana', ',', 'Thompson', 'Square', ',', 'Eli', 'Young', 'Band', ',', 'Zac', 'Brown', 'Band', 'and', 'British', 'duo', 'The', 'Shires', 'have', 'emerged', 'to', 'occupy', 'a', 'large', 'portion', 'of', 'the', 'new', 'country', 'artists', 'in', 'the', 'popular', 'scene', 'along', 'with', 'solo', 'singers', 'Kacey', 'Musgraves', 'and', 'Miranda', 'Lambert', '.'], 'ner_tags': ['O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'B-band', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-misc', 'I-misc', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O']}
|
| 17 |
+
{'id': '16', 'tokens': ['Two', 'of', 'his', 'most', 'popular', 'recordings', 'were', 'Layla', ',', 'recorded', 'with', 'Derek', 'and', 'the', 'Dominos', ';', 'and', 'Robert', 'Johnson', "'", 's', 'Cross', 'Road', 'Blues', ',', 'recorded', 'with', 'Cream', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-song', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-song', 'I-song', 'I-song', 'O', 'O', 'O', 'B-band', 'O']}
|
| 18 |
+
{'id': '17', 'tokens': ['Flood', 'has', 'been', 'certified', 'platinum', 'and', 'their', 'children', "'s", 'music', 'albums', 'Here', 'Come', 'the', 'ABCs', ',', 'Here', 'Come', 'the', '123s', ',', 'and', 'Here', 'Comes', 'Science', 'have', 'all', 'been', 'certified', 'gold', '.'], 'ner_tags': ['B-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 19 |
+
{'id': '18', 'tokens': ['She', 'is', 'the', 'recipient', 'of', 'various', 'accolades', 'including', 'an', 'Academy', 'Awards', ',', 'three', 'Golden', 'Globe', 'Awards', ',', 'two', 'Critics', "'", 'Choice', 'Movie', 'Awards', ',', 'a', 'Screen', 'Actors', 'Guild', 'Award', ',', 'and', 'nominations', 'for', 'four', 'BAFTA', 'Awards', ',', 'three', 'Primetime', 'Emmy', 'Awards', ',', 'and', 'a', 'Grammy', 'Award', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-award', 'I-award', 'O']}
|
| 20 |
+
{'id': '19', 'tokens': ['James', 'Brown', 'is', 'said', 'to', 'be', 'the', 'most', 'sampled', 'artist', 'in', 'the', 'history', 'of', 'hip', 'hop', ',', 'while', 'P-Funk', 'is', 'the', 'second', 'most', 'sampled', 'artist', ';', 'samples', 'of', 'old', 'Parliament', 'and', 'Funkadelic', 'songs', 'formed', 'the', 'basis', 'of', 'West', 'Coast', 'G-funk', '.'], 'ner_tags': ['B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'B-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O']}
|
| 21 |
+
{'id': '20', 'tokens': ['Her', 'early', 'works', 'in', 'the', '1960s', '(', 'her', 'debut', 'The', 'Barbra', 'Streisand', 'Album', ',', 'The', 'Second', 'Barbra', 'Streisand', 'Album', ',', 'The', 'Third', 'Album', ',', 'My', 'Name', 'Is', 'Barbra', ',', 'etc', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O']}
|
| 22 |
+
{'id': '21', 'tokens': ['At', 'these', 'labels', ',', 'Bubbles', 'created', 'more', 'designs', 'for', 'Elvis', 'Costello', ',', 'as', 'well', 'as', 'other', 'artists', 'such', 'as', 'Nick', 'Lowe', ',', 'Carlene', 'Carter', 'and', 'Clive', 'Langer', '&', 'amp', ';', 'The', 'Boxes', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-person', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'I-band', 'I-band', 'I-band', 'O']}
|
| 23 |
+
{'id': '22', 'tokens': ['The', 'band', 'have', 'received', 'a', 'total', 'of', '11', 'nominations', 'for', 'ARIA', 'Music', 'Awards', 'in', 'ARIA', 'Music', 'Awards', 'of', '1999', ',', 'ARIA', 'Music', 'Awards', 'of', '2001', 'and', 'ARIA', 'Music', 'Awards', 'of', '2003', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 24 |
+
{'id': '23', 'tokens': ['Their', 'music', 'has', 'a', 'particular', 'rumba', 'flamenca', 'style', ',', 'with', 'Pop', 'music', 'influences', ';', 'many', 'songs', 'of', 'the', 'Gipsy', 'Kings', 'fit', 'social', 'dance', 's', ',', 'such', 'as', 'salsa', 'and', 'Rhumba', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'O']}
|
| 25 |
+
{'id': '24', 'tokens': ['Parton', 'received', 'nominations', 'for', 'Drama', 'Desk', 'Award', 'for', 'Outstanding', 'Music', 'and', 'Drama', 'Desk', 'Award', 'for', 'Outstanding', 'Lyrics', ',', 'as', 'well', 'as', 'a', 'nomination', 'for', 'Tony', 'Award', 'for', 'Best', 'Original', 'Score', '.'], 'ner_tags': ['B-musicalartist', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 26 |
+
{'id': '25', 'tokens': ['By', 'the', 'end', 'of', 'World', 'War', 'II', ',', 'mountaineer', 'string', 'band', 'music', 'known', 'as', 'Bluegrass', 'music', 'had', 'emerged', 'when', 'Bill', 'Monroe', 'joined', 'with', 'Lester', 'Flatt', 'and', 'Earl', 'Scruggs', ',', 'introduced', 'by', 'Roy', 'Acuff', 'at', 'the', 'Grand', 'Ole', 'Opry', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O']}
|
| 27 |
+
{'id': '26', 'tokens': ['At', 'the', '59th', 'Annual', 'Grammy', 'Awards', 'on', '12', 'February', '2017', ',', 'Bowie', 'won', 'all', 'five', 'nominated', 'awards', ':', 'Grammy', 'Award', 'for', 'Best', 'Rock', 'Performance', ';', 'Grammy', 'Award', 'for', 'Best', 'Alternative', 'Music', 'Album', ';', 'Best', 'Engineered', 'Album', ',', 'Non-Classical', ';', 'Grammy', 'Award', 'for', 'Best', 'Recording', 'Package', ';', 'and', 'Grammy', 'Award', 'for', 'Best', 'Rock', 'Song', '.'], 'ner_tags': ['O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 28 |
+
{'id': '27', 'tokens': ['The', 'group', 'has', 'been', 'nominated', 'for', '20', 'Grammy', 'awards', 'and', 'has', 'won', 'five', 'of', 'them', 'with', 'Best', 'Alternative', 'Album', 'for', 'Dookie', ',', 'Best', 'Rock', 'Album', 'for', 'American', 'Idiot', 'and', '21st', 'Century', 'Breakdown', ',', 'Record', 'of', 'the', 'Year', 'for', 'Boulevard', 'of', 'Broken', 'Dreams', ',', 'and', 'Best', 'Musical', 'Show', 'Album', 'for', 'American', 'Idiot', ':', 'The', 'Original', 'Broadway', 'Cast', 'Recording', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'B-album', 'O', 'B-award', 'I-award', 'I-award', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O']}
|
| 29 |
+
{'id': '28', 'tokens': ['Today', 'there', 'are', 'Celtic-influenced', 'subgenres', 'of', 'virtually', 'every', 'type', 'of', 'popular', 'music', 'including', 'electronica', ',', 'Celtic', 'rock', ',', 'Celtic', 'metal', ',', 'Celtic', 'punk', ',', 'Hip', 'hop', 'music', ',', 'reggae', ',', 'New-age', 'music', ',', 'Latin', ',', 'Andean', 'and', 'Pop', 'music', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O']}
|
| 30 |
+
{'id': '29', 'tokens': ['The', 'Righteous', 'Brothers', ',', 'Bobby', 'Hatfield', 'and', 'Bill', 'Medley', ',', 'also', 'guest-starred', 'in', 'different', 'episodes', '.'], 'ner_tags': ['B-band', 'I-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 31 |
+
{'id': '30', 'tokens': ['Outside', 'the', 'south', ',', 'the', 'accordion', '(', 'predominantly', 'the', 'piano', 'accordion', ')', 'is', 'used', 'in', 'almost', 'all', 'styles', 'of', 'Forró', '(', 'in', 'particular', 'in', 'the', 'subgenres', 'of', 'Xote', 'and', 'Baião', ')', 'as', 'the', 'principal', 'instrument', ',', 'Luiz', 'Gonzaga', '(', 'the', 'King', 'of', 'the', 'Baião', ')', 'and', 'Dominguinhos', 'being', 'among', 'the', 'notable', 'musicians', 'in', 'this', 'style', 'from', 'the', 'northeast', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalinstrument', 'I-musicalinstrument', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 32 |
+
{'id': '31', 'tokens': ['These', 'were', ':', 'Now', 'and', 'Zen', 'in', '1988', ',', 'Manic', 'Nirvana', 'in', '1990', ',', 'and', 'the', '1993', 'Fate', 'of', 'Nations', '(', 'which', 'features', 'Moya', 'Brennan', 'of', 'Clannad', 'and', 'former', 'Cutting', 'Crew', 'guitarist', 'Kevin', 'MacMichael', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'O', 'O', 'B-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O']}
|
| 33 |
+
{'id': '32', 'tokens': ['In', 'Finland', ',', 'there', 'emerged', 'a', 'scene', 'that', 'mixed', 'the', 'first', 'wave', 'black', 'metal', 'style', 'with', 'elements', 'of', 'death', 'metal', 'and', 'grindcore', ';', 'this', 'included', 'Beherit', ',', 'Archgoat', 'and', 'Impaled', 'Nazarene', ',', 'whose', 'debut', 'album', 'Tol', 'Cormpt', 'Norz', 'Norz', 'Norz', 'Rock', 'Hard', 'journalist', 'Wolf-Rüdiger', 'Mühlmann', 'considers', 'a', 'part', 'of', 'war', 'metal', "'s", 'roots', '.'], 'ner_tags': ['O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'O', 'O', 'B-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'B-album', 'I-album', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O']}
|
| 34 |
+
{'id': '33', 'tokens': ['Arguably', 'the', 'most', 'successful', 'boy', 'band', 'manager', 'from', 'the', 'U.S.', 'was', 'Lou', 'Pearlman', ',', 'who', 'founded', 'commercially', 'successful', 'acts', 'such', 'as', 'the', 'Backstreet', 'Boys', 'in', '1993', ',', 'NSYNC', 'and', 'LFO', 'in', '1995', ',', 'O-Town', 'in', '2000', ',', 'and', 'US5', 'in', '2005', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'B-band', 'O', 'B-band', 'O', 'O', 'O', 'B-band', 'O', 'O', 'O', 'O', 'B-band', 'O', 'O', 'O']}
|
| 35 |
+
{'id': '34', 'tokens': ['Extreme', ',', 'Red', 'Hot', 'Chili', 'Peppers', ',', 'Living', 'Colour', ',', 'Jane', "'s", 'Addiction', ',', 'Prince', ',', 'Primus', ',', 'Fishbone', ',', 'Faith', 'No', 'More', ',', 'Rage', 'Against', 'the', 'Machine', ',', 'Infectious', 'Grooves', ',', 'and', 'Incubus', 'spread', 'the', 'approach', 'and', 'styles', 'garnered', 'from', 'funk', 'pioneers', 'to', 'new', 'audiences', 'in', 'the', 'mid-to-late', '1980s', 'and', 'the', '1990s', '.'], 'ner_tags': ['B-band', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-musicalartist', 'O', 'B-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'O', 'B-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 36 |
+
{'id': '35', 'tokens': ['Bands', 'like', 'Flogging', 'Molly', ',', 'Black', '47', ',', 'Dropkick', 'Murphys', ',', 'The', 'Young', 'Dubliners', ',', 'The', 'Tossers', 'introduced', 'a', 'hybrid', 'of', 'Celtic', 'rock', ',', 'Punk', 'rock', ',', 'reggae', ',', 'Hardcore', 'punk', 'and', 'other', 'elements', 'in', 'the', '1990s', 'that', 'has', 'become', 'popular', 'with', 'Irish-American', 'youth', '.'], 'ner_tags': ['O', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O']}
|
| 37 |
+
{'id': '36', 'tokens': ['The', 'Stone', 'Roses', "'", 'influences', 'included', 'garage', 'rock', ',', 'electronic', 'dance', 'music', ',', 'Krautrock', ',', 'Northern', 'soul', ',', 'punk', 'rock', ',', 'reggae', ',', 'Soul', 'music', 'and', 'artists', 'such', 'as', 'the', 'Beatles', ','], 'ner_tags': ['B-band', 'I-band', 'I-band', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O']}
|
| 38 |
+
{'id': '37', 'tokens': ['In', '2018', ',', 'Buckingham', 'was', 'fired', 'from', 'the', 'band', 'and', 'was', 'replaced', 'by', 'Mike', 'Campbell', ',', 'formerly', 'of', 'Tom', 'Petty', 'and', 'the', 'Heartbreakers', ',', 'and', 'Neil', 'Finn', 'of', 'Split', 'Enz', 'and', 'Crowded', 'House', '.'], 'ner_tags': ['O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'I-band', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'O']}
|
| 39 |
+
{'id': '38', 'tokens': ['In', 'Paris', ',', 'he', 'performed', 'at', 'the', 'Stade', 'de', 'France', 'for', 'Saint', 'Patrick', "'s", 'Day', ',', 'in', 'AccorHotels', 'Arena', ',', 'the', 'Bataclan', ',', 'the', 'Casino', 'de', 'Paris', 'and', 'the', 'Théâtre', 'de', 'la', 'Ville', 'with', 'guest', 'singers', 'Mari', 'Boine', 'and', 'Karen', 'Matheson', 'as', 'well', 'as', 'Donald', 'Shaw', '.'], 'ner_tags': ['O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'O', 'O', 'B-location', 'I-location', 'O', 'O', 'B-location', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'B-location', 'I-location', 'I-location', 'I-location', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O']}
|
| 40 |
+
{'id': '39', 'tokens': ['On', '26', 'February', '1987', ',', 'A', 'Hard', 'Day', "'s", 'Night', 'was', 'officially', 'released', 'on', 'compact', 'disc', 'in', 'mono', ',', 'along', 'with', 'Please', 'Please', 'Me', ',', 'With', 'the', 'Beatles', ',', 'and', 'Beatles', 'for', 'Sale', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O']}
|
| 41 |
+
{'id': '40', 'tokens': ['It', 'started', 'with', 'pop', 'music', 'singers', 'like', 'Glen', 'Campbell', ',', 'Bobbie', 'Gentry', ',', 'John', 'Denver', ',', 'Olivia', 'Newton-John', ',', 'Anne', 'Murray', ',', 'B.', 'J.', 'Thomas', ',', 'The', 'Bellamy', 'Brothers', ',', 'and', 'Linda', 'Ronstadt', 'having', 'hits', 'on', 'the', 'country', 'charts', '.'], 'ner_tags': ['O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O', 'B-person', 'I-person', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 42 |
+
{'id': '41', 'tokens': ['The', 'shows', 'were', 'later', 'taken', 'into', 'Europe', ',', 'and', 'featured', 'such', 'stars', 'as', 'Johnny', 'Cash', ',', 'Dolly', 'Parton', ',', 'Tammy', 'Wynette', ',', 'David', 'Allan', 'Coe', ',', 'Emmylou', 'Harris', ',', 'Boxcar', 'Willie', ',', 'Johnny', 'Russell', 'and', 'Jerry', 'Lee', 'Lewis', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'I-musicalartist', 'O']}
|
| 43 |
+
{'id': '42', 'tokens': ['Arguably', 'the', 'most', 'successful', 'boy', 'band', 'manager', 'from', 'the', 'U.S.', 'was', 'Lou', 'Pearlman', ',', 'who', 'founded', 'commercially', 'successful', 'acts', 'such', 'as', 'the', 'Backstreet', 'Boys', 'in', '1993', ',', 'NSYNC', 'and', 'LFO', 'in', '1995', ',', 'O-Town', 'in', '2000', ',', 'and', 'US5', 'in', '2005', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'B-band', 'O', 'B-band', 'O', 'O', 'O', 'B-band', 'O', 'O', 'O', 'O', 'B-band', 'O', 'O', 'O']}
|
| 44 |
+
{'id': '43', 'tokens': ['In', 'addition', ',', 'the', 'film', 'won', 'the', 'BAFTA', 'Award', 'for', 'Best', 'Film', ',', 'BAFTA', 'Award', 'for', 'Best', 'Direction', '(', 'Nichols', ')', ',', 'BAFTA', 'Award', 'for', 'Most', 'Promising', 'Newcomer', 'to', 'Leading', 'Film', 'Roles', '(', 'Hoffman', ')', ',', 'the', 'BAFTA', 'Award', 'for', 'Best', 'Editing', '(', 'Sam', 'O', "'Steen", ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-person', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-person', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-person', 'I-person', 'I-person', 'O', 'O']}
|
| 45 |
+
{'id': '44', 'tokens': ['With', 'the', 'influence', 'of', 'Tropicalismo', ',', 'Traditional', 'Samba', 'and', 'Bossa', 'Nova', ',', 'MPB', '(', 'Música', 'popular', 'brasileira', ')', ',', 'or', 'Brazilian', 'Popular', 'Music', ',', 'became', 'highly', 'singer-songwriter', 'based', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 46 |
+
{'id': '45', 'tokens': ['Following', 'the', 'hard', 'rock', 'and', 'heavy', 'metal', 'origins', 'on', 'the', 'band', "'s", 'first', 'two', 'albums', ',', 'Too', 'Fast', 'for', 'Love', '(', '1981', ')', 'and', 'Shout', 'at', 'the', 'Devil', '(', '1983', ')', ',', 'the', 'release', 'of', 'its', 'third', 'album', 'Theatre', 'of', 'Pain', '(', '1985', ')', 'saw', 'Mötley', 'Crüe', 'joining', 'the', 'first', 'wave', 'of', 'glam', 'metal', '.'], 'ner_tags': ['O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O']}
|
| 47 |
+
{'id': '46', 'tokens': ['In', 'June', '1985', ',', 'the', 'United', 'Way', 'of', 'Canada', 'invited', 'Lata', 'Mangeshkar', 'to', 'perform', 'at', 'Maple', 'Leaf', 'Gardens', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O']}
|
| 48 |
+
{'id': '47', 'tokens': ['Soundgarden', 'achieved', 'its', 'biggest', 'success', 'with', 'the', '1994', 'album', 'Superunknown', ',', 'which', 'debuted', 'at', 'number', 'one', 'on', 'the', 'Billboard', '200', 'and', 'yielded', 'the', 'Grammy', 'Award', '-winning', 'singles', 'Spoonman', 'and', 'Black', 'Hole', 'Sun', '.'], 'ner_tags': ['B-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-song', 'O', 'B-song', 'I-song', 'I-song', 'O']}
|
| 49 |
+
{'id': '48', 'tokens': ['Despite', 'this', ',', 'The', 'Godfather', 'Part', 'III', 'went', 'on', 'to', 'gather', '7', 'Academy', 'Awards', 'nominations', ',', 'including', 'Academy', 'Award', 'for', 'Best', 'Director', 'and', 'Academy', 'Award', 'for', 'Best', 'Picture', '.'], 'ner_tags': ['O', 'O', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 50 |
+
{'id': '49', 'tokens': ['In', '2005', ',', 'American', 'Idiot', 'won', 'a', 'Grammy', 'Award', 'for', 'Grammy', 'Award', 'for', 'Best', 'Rock', 'Album', 'and', 'was', 'nominated', 'in', 'six', 'other', 'categories', 'including', 'Grammy', 'Award', 'for', 'Album', 'of', 'the', 'Year', '.'], 'ner_tags': ['O', 'O', 'O', 'B-album', 'I-album', 'O', 'O', 'B-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 51 |
+
{'id': '50', 'tokens': ['A', 'sleeper', 'hit', 'in', 'United', 'Kingdom', ',', 'the', 'record', 'eventually', 'hit', 'the', 'top', 'three', 'in', 'the', 'Official', 'Charts', 'Company', 'and', 'received', 'platinum', 'certifications', 'from', 'British', 'Phonographic', 'Industry', ',', 'Recording', 'Industry', 'Association', 'of', 'America', 'and', 'ARIA', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'O']}
|
| 52 |
+
{'id': '51', 'tokens': ['For', 'the', '2008', '/', '2009', 'season', ',', 'he', 'played', 'Captain', 'Hook', 'at', 'the', 'Milton', 'Keynes', 'Theatre', 'and', 'donned', 'the', 'hook', 'once', 'again', 'for', 'the', '2009', '/', '2010', 'panto', 'season', 'at', 'the', 'Liverpool', 'Empire', 'Theatre', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'O', 'O', 'B-location', 'I-location', 'I-location', 'O']}
|
| 53 |
+
{'id': '52', 'tokens': ['The', 'band', 'also', 'released', 'three', 'full-length', 'albums', 'dubbed', '(', 'and', 'later', 'packaged', 'together', 'as', ')', 'The', 'Trilogy', ':', 'The', 'Maggot', ',', 'The', 'Bootlicker', ',', 'and', 'The', 'Crybaby', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'O', 'O', 'B-album', 'I-album', 'O']}
|
| 54 |
+
{'id': '53', 'tokens': ['He', 'toured', 'with', 'his', 'band', 'Les', 'Mistigris', '(', 'not', 'related', 'to', 'Mistigris', ')', 'in', 'Germany', ',', 'Belgium', ',', 'France', 'and', 'Turkey', 'until', '1967', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'B-country', 'O', 'O', 'O']}
|
| 55 |
+
{'id': '54', 'tokens': ['On', '24', 'August', '2012', ',', 'Westenra', 'staged', 'a', 'concert', 'in', 'the', 'Gŵyl', 'Gobaith', 'Music', 'Festival', 'in', 'Wales', 'to', 'support', 'for', 'charities', 'Cancer', 'Research', 'UK', ',', 'Wales', 'Air', 'Ambulance', ',', 'CLIC', 'Sargent', 'and', 'HeadtoHeart', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'O', 'B-country', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'O', 'B-organisation', 'O']}
|
| 56 |
+
{'id': '55', 'tokens': ['These', 'albums', 'spawned', 'some', 'of', 'Carey', "'s", 'most', 'successful', 'singles', ',', 'including', 'Hero', ',', 'Without', 'You', ',', 'All', 'I', 'Want', 'for', 'Christmas', 'Is', 'You', ',', 'Fantasy', ',', 'Always', 'Be', 'My', 'Baby', ',', 'as', 'well', 'as', 'One', 'Sweet', 'Day', ',', 'which', 'peaked', 'at', 'number', 'one', 'in', 'the', 'U.S.', 'for', '16', 'weeks', 'and', 'became', 'Billboard', 's', 'Song', 'Of', 'The', 'Decade', '(', '1990s', 'Decade', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'B-song', 'O', 'B-song', 'I-song', 'O', 'B-song', 'I-song', 'I-song', 'I-song', 'I-song', 'I-song', 'I-song', 'O', 'B-song', 'O', 'B-song', 'I-song', 'I-song', 'I-song', 'O', 'O', 'O', 'O', 'B-song', 'I-song', 'I-song', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'B-misc', 'I-misc', 'I-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O']}
|
| 57 |
+
{'id': '56', 'tokens': ['Michael', 'won', 'various', 'music', 'awards', 'including', 'two', 'Grammy', 'Award', 's', ',', 'three', 'Brit', 'Awards', ',', 'three', 'American', 'Music', 'Award', 's', ',', 'four', 'MTV', 'Video', 'Music', 'Award', 's', 'and', 'six', 'Ivor', 'Novello', 'Awards', '.'], 'ner_tags': ['B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O']}
|
| 58 |
+
{'id': '57', 'tokens': ['This', 'style', 'emerged', 'in', 'the', 'United', 'States', 'in', 'the', 'early', 'and', 'mid-1980s', ',', 'with', 'innovators', 'such', 'as', 'Queensrÿche', ',', 'Fates', 'Warning', ',', 'and', 'Dream', 'Theater', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'O', 'B-band', 'I-band', 'O', 'O', 'B-band', 'I-band', 'O']}
|
| 59 |
+
{'id': '58', 'tokens': ['For', 'Mirrors', ',', 'instead', 'of', 'working', 'with', 'previous', 'producers', 'Sandy', 'Pearlman', '(', 'who', 'instead', 'went', 'on', 'to', 'manage', 'Black', 'Sabbath', ')', 'and', 'Murray', 'Krugman', ',', 'Blue', 'Öyster', 'Cult', 'chose', 'Tom', 'Werman', ',', 'who', 'had', 'worked', 'with', 'acts', 'such', 'as', 'Cheap', 'Trick', 'and', 'Ted', 'Nugent', '.'], 'ner_tags': ['O', 'B-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'B-person', 'I-person', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-person', 'I-person', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O']}
|
| 60 |
+
{'id': '59', 'tokens': ['The', 'self-titled', 'record', 'was', 'an', 'instant', 'success', 'both', 'critically', 'and', 'commercially', ',', 'led', 'by', 'the', 'official', 'theme', 'song', 'for', 'UAAP', 'Season', '71', 'of', 'the', 'UAAP', '-', 'Puso', '(', 'trans', ':', 'Heart', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O', 'O', 'B-organisation', 'O', 'B-song', 'O', 'O', 'O', 'B-song', 'O', 'O']}
|
| 61 |
+
{'id': '60', 'tokens': ['Examples', 'of', 'such', 'professional', 'groups', 'include', 'Straight', 'No', 'Chaser', ',', 'Pentatonix', ',', 'The', 'House', 'Jacks', ',', 'Rockapella', ',', 'Mosaic', ',', 'Home', 'Free', 'and', 'M-pact', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'O']}
|
| 62 |
+
{'id': '61', 'tokens': ['Simon', 'has', 'won', '12', 'Grammy', 'Award', 's', '(', 'one', 'of', 'them', 'a', 'Grammy', 'Lifetime', 'Achievement', 'Award', ')', 'and', 'five', 'Grammy', 'Award', 'for', 'Album', 'of', 'the', 'Year', 'Grammy', 'nominations', ',', 'the', 'most', 'recent', 'for', 'You', "'re", 'the', 'One', 'in', '2001', '.'], 'ner_tags': ['B-musicalartist', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'B-song', 'I-song', 'I-song', 'I-song', 'O', 'O', 'O']}
|
| 63 |
+
{'id': '62', 'tokens': ['Brazil', 'Classics', '!', '--', 'redirects', 'here', '--', ',', 'the', 'label', "'s", 'first', 'compilation', 'series', ',', 'consists', 'of', 'seven', 'albums', 'surveying', 'genres', 'ranging', 'from', 'Samba', 'to', 'Tropicália', ',', 'as', 'well', 'as', 'individual', 'artists', '.'], 'ner_tags': ['B-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 64 |
+
{'id': '63', 'tokens': ['In', 'addition', ',', 'a', 'vintage', 'siren', ',', 'just', 'as', 'the', 'original', 'Boston', 'Garden', 'had', 'used', ',', 'was', 'added', 'to', 'replace', 'the', 'end-of-period', 'horn', 'for', 'hockey', 'only', ',', 'a', 'feature', 'of', 'the', 'Montreal', 'Canadiens', ',', 'the', 'Bruins', "'", 'arch-rivals', ',', 'at', 'the', 'Montreal', 'Forum', '(', 'now', 'the', 'Pepsi', 'Forum', 'shopping', 'centre', ')', 'and', 'the', 'current', 'Bell', 'Centre', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'O', 'O', 'O', 'B-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'O']}
|
| 65 |
+
{'id': '64', 'tokens': ['This', 'was', 'followed', 'by', 'a', 'series', 'of', 'small', ',', 'intimate', 'gigs', 'at', 'UK', 'venues', 'such', 'as', 'Liverpool', "'s", 'The', 'Cavern', 'Club', ',', 'London', "'s", 'Mean', 'Fiddler', ',', 'and', 'Glasgow', "'s", 'Barrowland', 'Ballroom', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'O', 'O', 'O', 'B-location', 'O', 'B-location', 'I-location', 'I-location', 'O', 'B-location', 'O', 'B-location', 'I-location', 'O', 'O', 'B-location', 'O', 'B-location', 'I-location', 'O']}
|
| 66 |
+
{'id': '65', 'tokens': ['Attracting', 'over', '200,000', 'fans', ',', 'Black', 'Sabbath', 'appeared', 'alongside', 'popular', '1970s', 'rock', 'and', 'pop', 'bands', 'Deep', 'Purple', ',', 'Eagles', ',', 'Emerson', ',', 'Lake', '&', 'Palmer', ',', 'Rare', 'Earth', ',', 'Seals', 'and', 'Crofts', ',', 'Black', 'Oak', 'Arkansas', ',', 'and', 'Earth', ',', 'Wind', '&', 'Fire', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'O', 'B-band', 'I-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'I-band', 'O']}
|
| 67 |
+
{'id': '66', 'tokens': ['Staind', 'has', 'recorded', 'seven', 'studio', 'albums', ':', 'Tormented', '(', '1996', ')', ',', 'Dysfunction', '(', '1999', ')', ',', 'Break', 'the', 'Cycle', '(', '2001', ')', ',', '14', 'Shades', 'of', 'Grey', '(', '2003', ')', ',', 'Chapter', 'V', '(', '2005', ')', ',', 'The', 'Illusion', 'of', 'Progress', '(', '2008', ')', ',', 'and', 'Staind', '(', '2011', ')', '.'], 'ner_tags': ['B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'O', 'O', 'O', 'O', 'B-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'B-album', 'O', 'O', 'O', 'O']}
|
| 68 |
+
{'id': '67', 'tokens': ['Following', 'the', 'end', 'of', 'Nirvana', ',', 'Novoselic', 'worked', 'on', 'completing', 'the', 'With', 'the', 'Lights', 'Out', 'box', 'set', 'and', 'From', 'the', 'Muddy', 'Banks', 'of', 'the', 'Wishkah', 'album', ',', 'as', 'well', 'as', 'pushing', 'for', 'release', 'of', 'a', 'Nevermind', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-band', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'O']}
|
| 69 |
+
{'id': '68', 'tokens': ['However', ',', 'some', 'bands', 'were', 'created', 'around', 'the', 'talent', 'of', 'a', 'songwriter', 'within', 'the', 'group', 'like', 'Gary', 'Barlow', 'of', 'Take', 'That', 'or', 'Tony', 'Mortimer', 'of', 'East', '17', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'O']}
|
| 70 |
+
{'id': '69', 'tokens': ['Since', 'then', 'the', 'band', 'have', 'released', 'five', 'albums', ':', 'In', 'It', 'for', 'the', 'Money', '(', '1997', ')', ',', 'Supergrass', '(', '1999', ')', ',', 'Life', 'on', 'Other', 'Planets', '(', '2002', ')', ',', 'Road', 'to', 'Rouen', '(', '2005', ')', 'and', 'Diamond', 'Hoo', 'Ha', '(', '2008', ')', ',', 'as', 'well', 'as', 'a', 'decade-ending', 'compilation', 'called', 'Supergrass', 'Is', '10', '(', '2004', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O']}
|
| 71 |
+
{'id': '70', 'tokens': ['At', 'the', '33rd', 'Academy', 'Awards', ',', 'The', 'Apartment', 'was', 'nominated', 'for', 'ten', 'awards', 'and', 'won', 'five', ',', 'including', 'Academy', 'Award', 'for', 'Best', 'Picture', ',', 'Academy', 'Award', 'for', 'Best', 'Director', ',', 'and', 'Academy', 'Award', 'for', 'Best', 'Original', 'Screenplay', '.'], 'ner_tags': ['O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'B-misc', 'I-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 72 |
+
{'id': '71', 'tokens': ['Dream', 'On', ',', 'I', 'Feel', 'Loved', ',', 'Freelove', 'and', 'Goodnight', 'Lovers', 'were', 'released', 'as', 'singles', 'in', '2001', 'and', '2002', '.'], 'ner_tags': ['B-song', 'I-song', 'O', 'B-song', 'I-song', 'I-song', 'O', 'B-song', 'O', 'B-song', 'I-song', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 73 |
+
{'id': '72', 'tokens': ['He', 'has', 'musically', 'encompassed', 'Folk', 'music', ',', 'funk', ',', 'Soul', 'music', ',', 'Hip', 'hop', 'music', ',', 'Electronic', 'music', ',', 'alternative', 'rock', ',', 'Country', 'music', ',', 'and', 'psychedelia', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'B-musicgenre', 'O']}
|
| 74 |
+
{'id': '73', 'tokens': ['Coldcut', 'returned', 'with', 'the', 'single', 'Everything', 'Is', 'Under', 'Control', 'at', 'the', 'end', 'of', '2005', ',', 'featuring', 'Jon', 'Spencer', '(', 'of', 'Jon', 'Spencer', 'Blues', 'Explosion', ')', 'and', 'Mike', 'Ladd', '.'], 'ner_tags': ['B-band', 'O', 'O', 'O', 'O', 'B-song', 'I-song', 'I-song', 'I-song', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O']}
|
| 75 |
+
{'id': '74', 'tokens': ['The', 'series', 'featured', 'five', 'albums', 'of', 'Masada', 'themes', 'including', 'Masada', 'Guitars', 'by', 'Marc', 'Ribot', ',', 'Bill', 'Frisell', ',', 'and', 'Tim', 'Sparks', ';', 'Masada', 'Recital', 'by', 'Mark', 'Feldman', 'and', 'Sylvie', 'Courvoisier', ';', 'Masada', 'Rock', 'by', 'Rashanim', ';', 'and', 'two', 'albums', 'featuring', 'various', 'artists', ',', 'Voices', 'in', 'the', 'Wilderness', 'and', 'The', 'Unknown', 'Masada', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'B-album', 'I-album', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-album', 'I-album', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-album', 'I-album', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O']}
|
| 76 |
+
{'id': '75', 'tokens': ['Depeche', 'Mode', 'contributed', 'their', 'cover', 'of', 'the', 'U2', 'song', 'So', 'Cruel', 'to', 'the', 'tribute', 'album', 'AHK-toong', 'BAY-bi', 'Covered', 'honouring', 'the', '20th', 'anniversary', 'of', 'Achtung', 'Baby', ',', 'a', '1991', 'album', 'by', 'U2', '.'], 'ner_tags': ['B-band', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'O', 'B-song', 'I-song', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'B-band', 'O']}
|
| 77 |
+
{'id': '76', 'tokens': ['The', 'stadium', 'also', 'hosted', 'such', 'events', 'as', '1973', 'Summer', 'Universiade', ',', '1986', 'Goodwill', 'Games', 'and', '2013', 'World', 'Championships', 'in', 'Athletics', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'O', 'B-event', 'I-event', 'I-event', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'I-event', 'O']}
|
| 78 |
+
{'id': '77', 'tokens': ['In', '1995', ',', 'Dookie', 'won', 'the', 'Grammy', 'Award', 'for', 'Grammy', 'Award', 'for', 'Best', 'Alternative', 'Music', 'Album', 'and', 'the', 'band', 'was', 'nominated', 'for', 'nine', 'MTV', 'Video', 'Music', 'Award', 's', 'including', 'Video', 'of', 'the', 'Year', '.'], 'ner_tags': ['O', 'O', 'O', 'B-album', 'O', 'O', 'B-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 79 |
+
{'id': '78', 'tokens': ['He', 'also', 'became', 'progressively', 'more', 'involved', 'with', 'Irish-American', 'organizations', ':', 'in', '1908', 'he', 'joined', 'the', 'Friendly', 'Sons', 'of', 'St.', 'Patrick', '(', 'becoming', 'president', 'in', '1916', ')', ',', 'the', 'oldest', 'Irish', 'association', 'in', 'New', 'York', ',', 'and', 'in', '1911', 'he', 'became', 'a', 'member', 'of', 'the', 'American', 'Irish', 'Historical', 'Society', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'B-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O']}
|
| 80 |
+
{'id': '79', 'tokens': ['The', 'Benedictines', 'and', 'their', 'offshoots', '(', 'Cistercians', 'and', 'Trappists', 'among', 'them', ')', ',', 'the', 'Premonstratensians', ',', 'and', 'the', 'military', 'orders', 'distinguish', 'between', 'conventual', 'and', 'simple', 'or', 'obedientiary', 'priories', '.'], 'ner_tags': ['O', 'B-organisation', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 81 |
+
{'id': '80', 'tokens': ['Poland', 'has', 'always', 'been', 'a', 'very', 'open', 'country', 'to', 'new', 'music', 'genres', 'and', 'even', 'before', 'the', 'fall', 'of', 'the', 'communism', ',', 'music', 'styles', 'like', 'rock', ',', 'Heavy', 'metal', 'music', ',', 'jazz', ',', 'Electronic', 'music', ',', 'and', 'New', 'wave', 'music', 'were', 'well-known', '.'], 'ner_tags': ['B-country', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-event', 'I-event', 'I-event', 'I-event', 'O', 'O', 'O', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O']}
|
| 82 |
+
{'id': '81', 'tokens': ['Blues', 'subgenres', 'include', 'country', 'blues', ',', 'such', 'as', 'Delta', 'blues', 'and', 'Piedmont', 'blues', ',', 'as', 'well', 'as', 'urban', 'blues', 'styles', 'such', 'as', 'Chicago', 'blues', 'and', 'West', 'Coast', 'blues', '.'], 'ner_tags': ['B-musicgenre', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O']}
|
| 83 |
+
{'id': '82', 'tokens': ['The', 'musical', 'was', 'an', 'immediate', 'hit', ',', 'winning', 'Tony', 'Award', 's', 'for', 'Tony', 'Award', 'for', 'Best', 'Musical', ',', 'Tony', 'Award', 'for', 'Best', 'Actress', 'in', 'a', 'Musical', '(', 'for', 'Lawrence', ')', 'and', 'Tony', 'Award', 'for', 'Best', 'Featured', 'Actor', 'in', 'a', 'Musical', '(', 'for', 'Brynner', ')', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-musicalartist', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-musicalartist', 'O', 'O']}
|
| 84 |
+
{'id': '83', 'tokens': ['In', '1995', ',', 'Nas', 'did', 'guest', 'performances', 'on', 'the', 'albums', 'Doe', 'or', 'Die', 'by', 'AZ', ',', 'The', 'Infamous', 'by', 'Mobb', 'Deep', ',', 'Only', 'Built', '4', 'Cuban', 'Linx', 'by', 'Raekwon', 'and', '4,5,6', 'by', 'Kool', 'G', 'Rap', '.'], 'ner_tags': ['O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-musicalartist', 'O', 'B-album', 'I-album', 'O', 'B-band', 'I-band', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'B-musicalartist', 'O', 'B-album', 'O', 'B-musicalartist', 'I-musicalartist', 'I-musicalartist', 'O']}
|
| 85 |
+
{'id': '84', 'tokens': ['In', '1995', ',', 'he', 'guested', 'on', 'two', 'tracks', 'on', 'Tom', 'Cochrane', "'", 's', 'Ragged', 'Ass', 'Road', 'album', 'and', 'then', 'in', '1996', 'on', 'I', 'Mother', 'Earth', "'", 's', 'Like', 'a', 'Girl', 'from', 'the', 'Scenery', 'and', 'Fish', 'album', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'B-song', 'I-song', 'I-song', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O']}
|
| 86 |
+
{'id': '85', 'tokens': ['She', 'released', 'her', 'first', 'Spanish', 'language', 'album', ',', 'Mi', 'Plan', ',', 'in', '2009', ',', 'which', 'won', 'her', 'a', 'Latin', 'Grammy', 'Award', 'for', 'Latin', 'Grammy', 'Award', 'for', 'Best', 'Female', 'Pop', 'Vocal', 'Album', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-misc', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O']}
|
| 87 |
+
{'id': '86', 'tokens': ['Bands', 'sponsored', 'by', 'factories', 'include', 'The', 'Black', 'Dyke', 'Mills', 'Band', ',', 'Yorkshire', 'Imperial', 'Band', '(', 'originally', 'the', 'Yorkshire', 'Copperworks', 'Band', ')', ',', 'Foden', "'s", 'sponsored', 'by', 'the', 'truck', 'manufacturer', ',', 'Fairey', 'Band', 'sponsored', 'by', 'the', 'aircraft', 'manufacturer', ',', 'and', 'Leyland', 'Band', 'sponsored', 'by', 'the', 'vehicle', 'manufacturer', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 88 |
+
{'id': '87', 'tokens': ['He', 'has', 'been', 'involved', 'in', 'charitable', 'work', ',', 'including', 'ONE', 'Campaign', ',', 'H2O', 'Africa', 'Foundation', ',', 'Feeding', 'America', ',', 'and', 'Water.org', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'O', 'O', 'B-organisation', 'O']}
|
| 89 |
+
{'id': '88', 'tokens': ['Prestwich', 'joined', 'Little', 'River', 'Band', 'in', '1984', 'and', 'appeared', 'on', 'the', 'albums', ',', 'Playing', 'to', 'Win', 'and', 'No', 'Reins', ',', 'before', 'departing', 'in', '1986', 'to', 'join', 'Farnham', "'s", 'touring', 'band', '.'], 'ner_tags': ['O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'O', 'O', 'O', 'O']}
|
| 90 |
+
{'id': '89', 'tokens': ['Their', 'debut', 'album', 'The', 'Magnificent', 'Moodies', ',', 'produced', 'by', 'Denny', 'Cordell', 'with', 'a', 'strong', 'Beat', 'music', '/', 'Rhythm', 'and', 'blues', 'flavour', ',', 'was', 'released', 'on', 'Decca', 'in', 'mono', 'only', 'in', '1965', '.'], 'ner_tags': ['O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 91 |
+
{'id': '90', 'tokens': ['According', 'to', 'the', 'band', "'s", 'biographer', 'Dave', 'Lewis', ',', 'while', 'the', 'barnstorming', 'effect', 'of', 'the', 'early', 'era', 'was', 'now', 'levelling', 'off', ',', 'and', 'though', 'devoid', 'of', 'the', 'electricity', 'of', 'Zeppelin', 'I', 'and', 'Led', 'Zeppelin', 'II', ',', 'the', 'sheer', 'diversity', 'of', 'Led', 'Zeppelin', 'III', ',', 'and', 'lacking', 'the', 'classic', 'status', 'of', 'Led', 'Zeppelin', 'IV', ',', 'Houses', 'of', 'the', 'Holy', 'nevertheless', 'found', 'its', 'rightful', 'niche', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O']}
|
| 92 |
+
{'id': '91', 'tokens': ['In', '1961', ',', 'he', 'performed', 'ten', 'recitals', 'in', 'Carnegie', 'Hall', 'to', 'raise', 'roughly', '$', '100,000', 'for', 'charities', 'including', 'Big', 'Brothers', 'Big', 'Sisters', 'of', 'America', ',', 'United', 'Jewish', 'Appeal', ',', 'Polish', 'Assistance', ',', 'Musicians', 'Emergency', 'fund', ',', 'the', 'National', 'Association', 'for', 'Mental', 'Health', ',', 'and', 'the', 'Legal', 'Defense', 'Fund', 'of', 'the', 'National', 'Advancement', 'of', 'Colored', 'People', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-location', 'I-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O', 'O', 'O', 'B-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'I-organisation', 'O']}
|
| 93 |
+
{'id': '92', 'tokens': ['Today', ',', 'musicians', 'as', 'diverse', 'as', 'Keith', 'Urban', ',', 'Rod', 'Stewart', ',', 'Taj', 'Mahal', ',', 'Joe', 'Satriani', ',', 'David', 'Hidalgo', ',', 'Larry', 'Lalonde', 'and', 'Doc', 'Watson', 'play', 'the', 'six-string', 'guitar', 'banjo', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-musicalinstrument', 'I-musicalinstrument', 'I-musicalinstrument', 'O']}
|
| 94 |
+
{'id': '93', 'tokens': ['The', 'initial', 'volume', 'of', 'the', 'album', 'set', '(', 'Anthology', '1', ')', 'was', 'released', 'the', 'same', 'week', 'of', 'the', 'documentary', "'s", 'airdate', ',', 'with', 'the', 'subsequent', 'two', 'volumes', '(', 'Anthology', '2', 'and', 'Anthology', '3', ')', 'released', 'in', '1996', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'I-album', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'O', 'O']}
|
| 95 |
+
{'id': '94', 'tokens': ['International', 'who', "'s", 'who', 'in', 'popular', 'music', ',', 'Volume', '4', 'p.37.', 'Routledge', ',', '2002', 'The', 'band', 'was', 'renamed', 'Rocket', 'Baby', 'Dolls', 'and', 'adopted', 'a', 'Gothic', 'rock', '-', 'Glam', 'rock', 'image', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O']}
|
| 96 |
+
{'id': '95', 'tokens': ['In', 'September', '2007', ',', 'Boney', 'M.', "'", 's', 'last', 'four', 'original', 'albums', ',', 'Boonoonoonoos', ',', 'Ten', 'Thousand', 'Lightyears', ',', 'Kalimba', 'de', 'Luna', '-', '16', 'Happy', 'Songs', 'and', 'Eye', 'Dance', 'were', 'reissued', 'on', 'compact', 'disc', 'in', 'Europe', 'and', 'the', 'United', 'States', ',', 'all', 'including', 'bonus', 'tracks', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-album', 'O', 'B-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'I-album', 'I-album', 'I-album', 'I-album', 'I-album', 'O', 'B-album', 'I-album', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O', 'B-location', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'B-misc', 'I-misc', 'O']}
|
| 97 |
+
{'id': '96', 'tokens': ['Despite', 'the', 'appeal', 'of', 'the', 'Nashville', 'sound', ',', 'many', 'traditional', 'country', 'artists', 'emerged', 'during', 'this', 'period', 'and', 'dominated', 'the', 'genre', ':', 'Loretta', 'Lynn', ',', 'Merle', 'Haggard', ',', 'Buck', 'Owens', ',', 'Porter', 'Wagoner', ',', 'George', 'Jones', ',', 'and', 'Sonny', 'James', 'among', 'them', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'O', 'O']}
|
| 98 |
+
{'id': '97', 'tokens': ['Christian', 'alternative', 'music', 'has', 'its', 'roots', 'in', 'the', 'early', '1980s', ',', 'as', 'the', 'earliest', 'efforts', 'at', 'Christian', 'punk', 'and', 'new', 'wave', 'were', 'recorded', 'by', 'artists', 'like', 'Andy', 'McCarroll', 'and', 'Moral', 'Support', ',', 'Undercover', ',', 'the', '77s', ',', 'Steve', 'Scott', ',', 'Adam', 'Again', ',', 'Quickflight', ',', 'Daniel', 'Amos', ',', 'Youth', 'Choir', '(', 'later', 'renamed', 'the', 'Choir', ')', ',', 'Lifesavers', 'Underground', ',', 'Michael', 'Knott', ',', 'the', 'Prayer', 'Chain', ',', 'Altar', 'Boys', ',', 'Breakfast', 'with', 'Amy', ',', 'Steve', 'Taylor', ',', '4-4-1', ',', 'David', 'Edwards', 'and', 'Vector', '.'], 'ner_tags': ['B-musicgenre', 'I-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'B-musicgenre', 'I-musicgenre', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'O', 'B-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'B-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-band', 'I-band', 'O', 'B-band', 'I-band', 'I-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-band', 'O', 'B-musicalartist', 'I-musicalartist', 'O', 'B-musicalartist', 'O']}
|
| 99 |
+
{'id': '98', 'tokens': ['He', 'has', 'won', 'numerous', 'accolades', 'for', 'his', 'work', ',', 'including', 'an', 'Academy', 'Award', 'for', 'Best', 'Adapted', 'Screenplay', ',', 'a', 'Student', 'Academy', 'Award', ',', 'a', 'BAFTA', 'Award', 'for', 'Best', 'Adapted', 'Screenplay', ',', 'two', 'Emmy', 'Awards', ',', 'two', 'Peabody', 'Award', 's', ',', 'and', 'the', 'Cannes', 'Grand', 'Prix', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'I-award', 'I-award', 'I-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'B-award', 'I-award', 'O', 'O', 'O', 'O', 'B-award', 'I-award', 'I-award', 'O']}
|
| 100 |
+
{'id': '99', 'tokens': ['The', 'mid', '2000s', ',', 'especially', 'the', 'United', 'Kingdom', 'and', 'the', 'rest', 'of', 'Europe', ',', 'saw', 'the', 'continued', 'longevity', 'of', 'nineties', 'boy', 'bands', 'such', 'as', 'Backstreet', 'Boys', 'and', 'Westlife', '(', 'before', 'they', 'disbanded', 'in', '2012', ')', ',', 'and', 'the', 'successful', 'comeback', 'of', 'Take', 'That', 'in', '2005', ',', 'Boyzone', 'in', '2007', ',', 'and', 'New', 'Kids', 'on', 'the', 'Block', 'in', '2008', '.'], 'ner_tags': ['O', 'O', 'O', 'O', 'O', 'O', 'B-country', 'I-country', 'O', 'O', 'O', 'O', 'B-location', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'B-band', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'O', 'O', 'O', 'B-band', 'O', 'O', 'O', 'O', 'B-band', 'I-band', 'I-band', 'I-band', 'I-band', 'O', 'O', 'O']}
|
data/music/validation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/politics/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/politics/train.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/politics/validation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/science/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/science/train.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/science/validation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|