Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tokestermw/1a7c26143689a6baf78b68bfa7230b88 to your computer and use it in GitHub Desktop.
Save tokestermw/1a7c26143689a6baf78b68bfa7230b88 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import json \n",
"import pandas as pd"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Load the annotations that we downloaded"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"data = json.load(open('./Bible_annotations.json'))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For convenience, extract the Examples from the dataset. Each example contains its annotations"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"examples = data[\"dataset\"][\"examples\"]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We'll use Pandas json_normalize function to \"normalize\" the annotations. \n",
"We pass it the examples, tell it to \"open up\" the annotations field, and keep the \"content\" field so we can see\n",
"the text that was annotated. "
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"Annotations = pd.io.json.json_normalize(examples,'annotations','content')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Lets take a look at what came out"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style>\n",
" .dataframe thead tr:only-child th {\n",
" text-align: right;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: left;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>annotator</th>\n",
" <th>end</th>\n",
" <th>example_id</th>\n",
" <th>id</th>\n",
" <th>start</th>\n",
" <th>tag</th>\n",
" <th>value</th>\n",
" <th>content</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>lighttag</td>\n",
" <td>64</td>\n",
" <td>fb503d56ab2c457f96361ee306e39eb1</td>\n",
" <td>77f4fd6056534e098179b9b03e6a27fc</td>\n",
" <td>60</td>\n",
" <td>God</td>\n",
" <td>LORD</td>\n",
" <td>Now the sons of Eli were sons of Belial; they...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>lighttag</td>\n",
" <td>40</td>\n",
" <td>fb503d56ab2c457f96361ee306e39eb1</td>\n",
" <td>e21955d99d5a425c8d6e9c55768b355c</td>\n",
" <td>34</td>\n",
" <td>Pagan God</td>\n",
" <td>Belial</td>\n",
" <td>Now the sons of Eli were sons of Belial; they...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>lighttag</td>\n",
" <td>20</td>\n",
" <td>fb503d56ab2c457f96361ee306e39eb1</td>\n",
" <td>eddb43b35fa8419296c6cc715a743e50</td>\n",
" <td>17</td>\n",
" <td>Person</td>\n",
" <td>Eli</td>\n",
" <td>Now the sons of Eli were sons of Belial; they...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>lighttag</td>\n",
" <td>147</td>\n",
" <td>96fae26ab94244b2a5662f2d258e002b</td>\n",
" <td>ef31962aa9e94274a572d8ceb8a03df4</td>\n",
" <td>141</td>\n",
" <td>Place</td>\n",
" <td>Shiloh</td>\n",
" <td>And he struck it into the pan, or kettle, or ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>tirzape</td>\n",
" <td>84</td>\n",
" <td>4b9384ff5bec475189fb1249e8455640</td>\n",
" <td>23a7a0455ed640659f7e87be2629de97</td>\n",
" <td>83</td>\n",
" <td>God</td>\n",
" <td>I</td>\n",
" <td>And there came a man of God unto Eli, and sai...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" annotator end example_id \\\n",
"0 lighttag 64 fb503d56ab2c457f96361ee306e39eb1 \n",
"1 lighttag 40 fb503d56ab2c457f96361ee306e39eb1 \n",
"2 lighttag 20 fb503d56ab2c457f96361ee306e39eb1 \n",
"3 lighttag 147 96fae26ab94244b2a5662f2d258e002b \n",
"4 tirzape 84 4b9384ff5bec475189fb1249e8455640 \n",
"\n",
" id start tag value \\\n",
"0 77f4fd6056534e098179b9b03e6a27fc 60 God LORD \n",
"1 e21955d99d5a425c8d6e9c55768b355c 34 Pagan God Belial \n",
"2 eddb43b35fa8419296c6cc715a743e50 17 Person Eli \n",
"3 ef31962aa9e94274a572d8ceb8a03df4 141 Place Shiloh \n",
"4 23a7a0455ed640659f7e87be2629de97 83 God I \n",
"\n",
" content \n",
"0 Now the sons of Eli were sons of Belial; they... \n",
"1 Now the sons of Eli were sons of Belial; they... \n",
"2 Now the sons of Eli were sons of Belial; they... \n",
"3 And he struck it into the pan, or kettle, or ... \n",
"4 And there came a man of God unto Eli, and sai... "
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Annotations.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Sometimes its convenient to \"group together\" all the annoations that belong to the same content. We can use Pandas\n",
"set_index function"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style>\n",
" .dataframe thead tr:only-child th {\n",
" text-align: right;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: left;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th></th>\n",
" <th>annotator</th>\n",
" <th>end</th>\n",
" <th>id</th>\n",
" <th>start</th>\n",
" <th>tag</th>\n",
" <th>value</th>\n",
" </tr>\n",
" <tr>\n",
" <th>content</th>\n",
" <th>example_id</th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>According to all the works which they have done since the day that I brought them up out of Egypt even unto this day, wherewith they have forsaken me, and served other gods, so do they also unto thee.</th>\n",
" <th>ba82cb4349f7441cbb9d4ebe43fb0067</th>\n",
" <td>Tal</td>\n",
" <td>98</td>\n",
" <td>f83c9ceb046748e3b4683636c9b85f03</td>\n",
" <td>93</td>\n",
" <td>Nation</td>\n",
" <td>Egypt</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"17\" valign=\"top\">And David said unto his men, Gird ye on every man his sword. And they girded on every man his sword; and David also girded on his sword: and there went up after David about four hundred men; and two hundred abode by the stuff.</th>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>213</td>\n",
" <td>32a34ddcd695442793c3e46b53d5bb5e</td>\n",
" <td>208</td>\n",
" <td>Object</td>\n",
" <td>abode</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>226</td>\n",
" <td>c3ad73dc3f47456391cfeab3bd4da62f</td>\n",
" <td>221</td>\n",
" <td>Object</td>\n",
" <td>stuff</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>136</td>\n",
" <td>a6e688c27f514e22933ab2b8bc7a03bb</td>\n",
" <td>131</td>\n",
" <td>Object</td>\n",
" <td>sword</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>100</td>\n",
" <td>a6450d5ef42e4e07a686678943c19b02</td>\n",
" <td>94</td>\n",
" <td>Object</td>\n",
" <td>sword</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>60</td>\n",
" <td>dc35de40990a4192994bbe2fb3c8b97f</td>\n",
" <td>55</td>\n",
" <td>Object</td>\n",
" <td>sword</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>15</td>\n",
" <td>0e6ba265a7a947289cc02f9ff9c65c25</td>\n",
" <td>11</td>\n",
" <td>Action</td>\n",
" <td>said</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>152</td>\n",
" <td>f3afb7869af548c3ab296c7e0b7fd2f8</td>\n",
" <td>148</td>\n",
" <td>Action</td>\n",
" <td>went</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>123</td>\n",
" <td>75ce84b1a423413a8facfcb92e3a22aa</td>\n",
" <td>117</td>\n",
" <td>Action</td>\n",
" <td>girded</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>77</td>\n",
" <td>bc9ebb9987434c1ba4872fa28852f7b5</td>\n",
" <td>71</td>\n",
" <td>Action</td>\n",
" <td>girded</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>34</td>\n",
" <td>ce7e86be788e47d8b0d7f0e85f36887e</td>\n",
" <td>30</td>\n",
" <td>Action</td>\n",
" <td>Gird</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>190</td>\n",
" <td>74f5f4d8db4147e2adf07c2b274a15d9</td>\n",
" <td>187</td>\n",
" <td>Person</td>\n",
" <td>men</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>167</td>\n",
" <td>7f332b22607a45f9aafd4ec5f65c6219</td>\n",
" <td>162</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>111</td>\n",
" <td>643fd47f962f468fb319087b25ee5997</td>\n",
" <td>106</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>90</td>\n",
" <td>6ea7ee31ce944c18968dc7ef84a12c95</td>\n",
" <td>87</td>\n",
" <td>Person</td>\n",
" <td>man</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>50</td>\n",
" <td>fc8a8077b6094bf3acb5d725ad573f73</td>\n",
" <td>47</td>\n",
" <td>Person</td>\n",
" <td>man</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>28</td>\n",
" <td>358510d6cd7d415d80eebbe157b36b80</td>\n",
" <td>25</td>\n",
" <td>Person</td>\n",
" <td>men</td>\n",
" </tr>\n",
" <tr>\n",
" <th>a437a32ed1bd4c84b410b9172b58f890</th>\n",
" <td>tirzape</td>\n",
" <td>10</td>\n",
" <td>1af276ce644b4cde9be7aa004c5773b1</td>\n",
" <td>5</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"3\" valign=\"top\">And David sware moreover, and said, Thy father certainly knoweth that I have found grace in thine eyes; and he saith, Let not Jonathan know this, lest he be grieved: but truly as the LORD liveth, and as thy soul liveth, there is but a step between me and death.</th>\n",
" <th>33f826ab61a24e1db60eb9bd3b0822aa</th>\n",
" <td>lighttag</td>\n",
" <td>188</td>\n",
" <td>b0659f998314456c909337a8e8955eae</td>\n",
" <td>184</td>\n",
" <td>God</td>\n",
" <td>LORD</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33f826ab61a24e1db60eb9bd3b0822aa</th>\n",
" <td>lighttag</td>\n",
" <td>135</td>\n",
" <td>28d5df63de6c461fbff41f140710165c</td>\n",
" <td>127</td>\n",
" <td>Person</td>\n",
" <td>Jonathan</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33f826ab61a24e1db60eb9bd3b0822aa</th>\n",
" <td>lighttag</td>\n",
" <td>10</td>\n",
" <td>5a4278edbd4e413b94165d99589e9053</td>\n",
" <td>5</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"2\" valign=\"top\">And I will go out and stand beside my father in the field where thou art, and I will commune with my father of thee; and what I see, that I will tell thee.</th>\n",
" <th>2742245bd54047c68220106985115fde</th>\n",
" <td>Tal</td>\n",
" <td>93</td>\n",
" <td>816d724f994643e49a38b73ff44ec81c</td>\n",
" <td>86</td>\n",
" <td>Action</td>\n",
" <td>commune</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2742245bd54047c68220106985115fde</th>\n",
" <td>Tal</td>\n",
" <td>28</td>\n",
" <td>153d42b439dd4f54a15d1375325694d9</td>\n",
" <td>23</td>\n",
" <td>Action</td>\n",
" <td>stand</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"4\" valign=\"top\">And Jonathan spake good of David unto Saul his father, and said unto him, Let not the king sin against his servant, against David; because he hath not sinned against thee, and because his works have been to thee-ward very good:</th>\n",
" <th>3888b56310e4431a888cc4289402bb1f</th>\n",
" <td>Tal</td>\n",
" <td>130</td>\n",
" <td>c3641340f98640ce8a6542f1c1cec2f0</td>\n",
" <td>125</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3888b56310e4431a888cc4289402bb1f</th>\n",
" <td>Tal</td>\n",
" <td>43</td>\n",
" <td>c6c94b06090a4aa79e34bd3c3d597e31</td>\n",
" <td>39</td>\n",
" <td>Person</td>\n",
" <td>Saul</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3888b56310e4431a888cc4289402bb1f</th>\n",
" <td>Tal</td>\n",
" <td>33</td>\n",
" <td>f204a17c953a4a1884406b7397cb7d75</td>\n",
" <td>28</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3888b56310e4431a888cc4289402bb1f</th>\n",
" <td>Tal</td>\n",
" <td>13</td>\n",
" <td>e9ef431a486044858f5c1ec8fd969ce9</td>\n",
" <td>5</td>\n",
" <td>Person</td>\n",
" <td>Jonathan</td>\n",
" </tr>\n",
" <tr>\n",
" <th>And Jonathan stripped himself of the robe that was upon him, and gave it to David, and his garments, even to his sword, and to his bow, and to his girdle.</th>\n",
" <th>8ed8c3c8f0e9425dbf71979ca8c23857</th>\n",
" <td>Tal</td>\n",
" <td>82</td>\n",
" <td>b585ce8c8e9943d18e94942131c8dab7</td>\n",
" <td>77</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th>And Samuel died; and all the Israelites were gathered together, and lamented him, and buried him in his house at Ramah. And David arose, and went down to the wilderness of Paran.</th>\n",
" <th>d297e1e0c6444e69a997481ec15a3b3a</th>\n",
" <td>Tal</td>\n",
" <td>130</td>\n",
" <td>c6e933ff2692455198ce3a9736f0f965</td>\n",
" <td>125</td>\n",
" <td>Person</td>\n",
" <td>David</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"8\" valign=\"top\">And Samuel grew, and the LORD was with him, and did let none of his words fall to the ground.</th>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>93</td>\n",
" <td>f951f87593e34604aff3ef4399ac40ab</td>\n",
" <td>87</td>\n",
" <td>Place</td>\n",
" <td>ground</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>74</td>\n",
" <td>334d1b5885fa4cc7acd2269850cf7051</td>\n",
" <td>69</td>\n",
" <td>Object</td>\n",
" <td>words</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>56</td>\n",
" <td>7d3aef6d610c460981e736c05d994ead</td>\n",
" <td>52</td>\n",
" <td>Action</td>\n",
" <td>let</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>30</td>\n",
" <td>2ed69ced2c7f4adb98274a3148d785b4</td>\n",
" <td>27</td>\n",
" <td>God</td>\n",
" <td>ORD</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>43</td>\n",
" <td>8ff7c9b12efd4ebab2b2a21fc4cf60c7</td>\n",
" <td>40</td>\n",
" <td>Person</td>\n",
" <td>him</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>11</td>\n",
" <td>eb6bf729d3ff443fa759962be89e5428</td>\n",
" <td>5</td>\n",
" <td>Person</td>\n",
" <td>Samuel</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>79</td>\n",
" <td>c13c09a9229c42d2a3c3cb49d1beed8d</td>\n",
" <td>75</td>\n",
" <td>Action</td>\n",
" <td>fall</td>\n",
" </tr>\n",
" <tr>\n",
" <th>d3f2ea6f5ffb4210872f72d2add0e61d</th>\n",
" <td>tirzape</td>\n",
" <td>16</td>\n",
" <td>a012c2be48c94dabadb3dc78e60f4121</td>\n",
" <td>12</td>\n",
" <td>Action</td>\n",
" <td>grew</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"3\" valign=\"top\">And Samuel said, Hath the LORD as great delight in burnt offerings and sacrifices, as in obeying the voice of the LORD? Behold, to obey is better than sacrifice, and to hearken than the fat of rams.</th>\n",
" <th>b995ced89ab344b39d914e51064a0461</th>\n",
" <td>Tal</td>\n",
" <td>67</td>\n",
" <td>6d902ab6740e4ed1a797998a9816db34</td>\n",
" <td>52</td>\n",
" <td>Object</td>\n",
" <td>burnt offerings</td>\n",
" </tr>\n",
" <tr>\n",
" <th>b995ced89ab344b39d914e51064a0461</th>\n",
" <td>Tal</td>\n",
" <td>31</td>\n",
" <td>af6d78a3f5464a75942a583af7ad2f39</td>\n",
" <td>27</td>\n",
" <td>God</td>\n",
" <td>LORD</td>\n",
" </tr>\n",
" <tr>\n",
" <th>b995ced89ab344b39d914e51064a0461</th>\n",
" <td>Tal</td>\n",
" <td>11</td>\n",
" <td>822685845dd14a54a63874c0d89a9dd2</td>\n",
" <td>5</td>\n",
" <td>Person</td>\n",
" <td>Samuel</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"10\" valign=\"top\">And Samuel told him every whit, and hid nothing from him. And he said, It is the LORD: let him do what seemeth him good.</th>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>16</td>\n",
" <td>0b2729fb4287476aad33dde383502a71</td>\n",
" <td>12</td>\n",
" <td>Action</td>\n",
" <td>told</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>98</td>\n",
" <td>dd5a0ada93f94442a3028bd2c64d4081</td>\n",
" <td>96</td>\n",
" <td>Action</td>\n",
" <td>do</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>70</td>\n",
" <td>7ce8b6041a9f4277ad5643ddd9c90534</td>\n",
" <td>66</td>\n",
" <td>Action</td>\n",
" <td>said</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>40</td>\n",
" <td>fe42c8ef9ffb4447a5d93739f1ac400e</td>\n",
" <td>37</td>\n",
" <td>Action</td>\n",
" <td>hid</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>115</td>\n",
" <td>496e91db823e41e4b97d7568f91e7a80</td>\n",
" <td>112</td>\n",
" <td>God</td>\n",
" <td>him</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>86</td>\n",
" <td>12df377b78f64017b40ad38250fd2465</td>\n",
" <td>82</td>\n",
" <td>God</td>\n",
" <td>LORD</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>65</td>\n",
" <td>eb3f127bd5de48a68c6cdbe40078e9dc</td>\n",
" <td>63</td>\n",
" <td>God</td>\n",
" <td>he</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>57</td>\n",
" <td>c0998e749c664f2191455fc5e7294ff9</td>\n",
" <td>54</td>\n",
" <td>God</td>\n",
" <td>him</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>20</td>\n",
" <td>57a0b659fe01442096c91f23f61eee42</td>\n",
" <td>17</td>\n",
" <td>God</td>\n",
" <td>him</td>\n",
" </tr>\n",
" <tr>\n",
" <th>eb99771259c448cea8e422e26171ed0e</th>\n",
" <td>tirzape</td>\n",
" <td>11</td>\n",
" <td>7452cafbc0304856b57ad6646edd7589</td>\n",
" <td>5</td>\n",
" <td>Person</td>\n",
" <td>Samuel</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" annotator \\\n",
"content example_id \n",
" According to all the works which they have don... ba82cb4349f7441cbb9d4ebe43fb0067 Tal \n",
" And David said unto his men, Gird ye on every ... a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" a437a32ed1bd4c84b410b9172b58f890 tirzape \n",
" And David sware moreover, and said, Thy father... 33f826ab61a24e1db60eb9bd3b0822aa lighttag \n",
" 33f826ab61a24e1db60eb9bd3b0822aa lighttag \n",
" 33f826ab61a24e1db60eb9bd3b0822aa lighttag \n",
" And I will go out and stand beside my father i... 2742245bd54047c68220106985115fde Tal \n",
" 2742245bd54047c68220106985115fde Tal \n",
" And Jonathan spake good of David unto Saul his... 3888b56310e4431a888cc4289402bb1f Tal \n",
" 3888b56310e4431a888cc4289402bb1f Tal \n",
" 3888b56310e4431a888cc4289402bb1f Tal \n",
" 3888b56310e4431a888cc4289402bb1f Tal \n",
" And Jonathan stripped himself of the robe that... 8ed8c3c8f0e9425dbf71979ca8c23857 Tal \n",
" And Samuel died; and all the Israelites were g... d297e1e0c6444e69a997481ec15a3b3a Tal \n",
" And Samuel grew, and the LORD was with him, an... d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" d3f2ea6f5ffb4210872f72d2add0e61d tirzape \n",
" And Samuel said, Hath the LORD as great deligh... b995ced89ab344b39d914e51064a0461 Tal \n",
" b995ced89ab344b39d914e51064a0461 Tal \n",
" b995ced89ab344b39d914e51064a0461 Tal \n",
" And Samuel told him every whit, and hid nothin... eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
" eb99771259c448cea8e422e26171ed0e tirzape \n",
"\n",
" end \\\n",
"content example_id \n",
" According to all the works which they have don... ba82cb4349f7441cbb9d4ebe43fb0067 98 \n",
" And David said unto his men, Gird ye on every ... a437a32ed1bd4c84b410b9172b58f890 213 \n",
" a437a32ed1bd4c84b410b9172b58f890 226 \n",
" a437a32ed1bd4c84b410b9172b58f890 136 \n",
" a437a32ed1bd4c84b410b9172b58f890 100 \n",
" a437a32ed1bd4c84b410b9172b58f890 60 \n",
" a437a32ed1bd4c84b410b9172b58f890 15 \n",
" a437a32ed1bd4c84b410b9172b58f890 152 \n",
" a437a32ed1bd4c84b410b9172b58f890 123 \n",
" a437a32ed1bd4c84b410b9172b58f890 77 \n",
" a437a32ed1bd4c84b410b9172b58f890 34 \n",
" a437a32ed1bd4c84b410b9172b58f890 190 \n",
" a437a32ed1bd4c84b410b9172b58f890 167 \n",
" a437a32ed1bd4c84b410b9172b58f890 111 \n",
" a437a32ed1bd4c84b410b9172b58f890 90 \n",
" a437a32ed1bd4c84b410b9172b58f890 50 \n",
" a437a32ed1bd4c84b410b9172b58f890 28 \n",
" a437a32ed1bd4c84b410b9172b58f890 10 \n",
" And David sware moreover, and said, Thy father... 33f826ab61a24e1db60eb9bd3b0822aa 188 \n",
" 33f826ab61a24e1db60eb9bd3b0822aa 135 \n",
" 33f826ab61a24e1db60eb9bd3b0822aa 10 \n",
" And I will go out and stand beside my father i... 2742245bd54047c68220106985115fde 93 \n",
" 2742245bd54047c68220106985115fde 28 \n",
" And Jonathan spake good of David unto Saul his... 3888b56310e4431a888cc4289402bb1f 130 \n",
" 3888b56310e4431a888cc4289402bb1f 43 \n",
" 3888b56310e4431a888cc4289402bb1f 33 \n",
" 3888b56310e4431a888cc4289402bb1f 13 \n",
" And Jonathan stripped himself of the robe that... 8ed8c3c8f0e9425dbf71979ca8c23857 82 \n",
" And Samuel died; and all the Israelites were g... d297e1e0c6444e69a997481ec15a3b3a 130 \n",
" And Samuel grew, and the LORD was with him, an... d3f2ea6f5ffb4210872f72d2add0e61d 93 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 74 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 56 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 30 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 43 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 11 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 79 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 16 \n",
" And Samuel said, Hath the LORD as great deligh... b995ced89ab344b39d914e51064a0461 67 \n",
" b995ced89ab344b39d914e51064a0461 31 \n",
" b995ced89ab344b39d914e51064a0461 11 \n",
" And Samuel told him every whit, and hid nothin... eb99771259c448cea8e422e26171ed0e 16 \n",
" eb99771259c448cea8e422e26171ed0e 98 \n",
" eb99771259c448cea8e422e26171ed0e 70 \n",
" eb99771259c448cea8e422e26171ed0e 40 \n",
" eb99771259c448cea8e422e26171ed0e 115 \n",
" eb99771259c448cea8e422e26171ed0e 86 \n",
" eb99771259c448cea8e422e26171ed0e 65 \n",
" eb99771259c448cea8e422e26171ed0e 57 \n",
" eb99771259c448cea8e422e26171ed0e 20 \n",
" eb99771259c448cea8e422e26171ed0e 11 \n",
"\n",
" id \\\n",
"content example_id \n",
" According to all the works which they have don... ba82cb4349f7441cbb9d4ebe43fb0067 f83c9ceb046748e3b4683636c9b85f03 \n",
" And David said unto his men, Gird ye on every ... a437a32ed1bd4c84b410b9172b58f890 32a34ddcd695442793c3e46b53d5bb5e \n",
" a437a32ed1bd4c84b410b9172b58f890 c3ad73dc3f47456391cfeab3bd4da62f \n",
" a437a32ed1bd4c84b410b9172b58f890 a6e688c27f514e22933ab2b8bc7a03bb \n",
" a437a32ed1bd4c84b410b9172b58f890 a6450d5ef42e4e07a686678943c19b02 \n",
" a437a32ed1bd4c84b410b9172b58f890 dc35de40990a4192994bbe2fb3c8b97f \n",
" a437a32ed1bd4c84b410b9172b58f890 0e6ba265a7a947289cc02f9ff9c65c25 \n",
" a437a32ed1bd4c84b410b9172b58f890 f3afb7869af548c3ab296c7e0b7fd2f8 \n",
" a437a32ed1bd4c84b410b9172b58f890 75ce84b1a423413a8facfcb92e3a22aa \n",
" a437a32ed1bd4c84b410b9172b58f890 bc9ebb9987434c1ba4872fa28852f7b5 \n",
" a437a32ed1bd4c84b410b9172b58f890 ce7e86be788e47d8b0d7f0e85f36887e \n",
" a437a32ed1bd4c84b410b9172b58f890 74f5f4d8db4147e2adf07c2b274a15d9 \n",
" a437a32ed1bd4c84b410b9172b58f890 7f332b22607a45f9aafd4ec5f65c6219 \n",
" a437a32ed1bd4c84b410b9172b58f890 643fd47f962f468fb319087b25ee5997 \n",
" a437a32ed1bd4c84b410b9172b58f890 6ea7ee31ce944c18968dc7ef84a12c95 \n",
" a437a32ed1bd4c84b410b9172b58f890 fc8a8077b6094bf3acb5d725ad573f73 \n",
" a437a32ed1bd4c84b410b9172b58f890 358510d6cd7d415d80eebbe157b36b80 \n",
" a437a32ed1bd4c84b410b9172b58f890 1af276ce644b4cde9be7aa004c5773b1 \n",
" And David sware moreover, and said, Thy father... 33f826ab61a24e1db60eb9bd3b0822aa b0659f998314456c909337a8e8955eae \n",
" 33f826ab61a24e1db60eb9bd3b0822aa 28d5df63de6c461fbff41f140710165c \n",
" 33f826ab61a24e1db60eb9bd3b0822aa 5a4278edbd4e413b94165d99589e9053 \n",
" And I will go out and stand beside my father i... 2742245bd54047c68220106985115fde 816d724f994643e49a38b73ff44ec81c \n",
" 2742245bd54047c68220106985115fde 153d42b439dd4f54a15d1375325694d9 \n",
" And Jonathan spake good of David unto Saul his... 3888b56310e4431a888cc4289402bb1f c3641340f98640ce8a6542f1c1cec2f0 \n",
" 3888b56310e4431a888cc4289402bb1f c6c94b06090a4aa79e34bd3c3d597e31 \n",
" 3888b56310e4431a888cc4289402bb1f f204a17c953a4a1884406b7397cb7d75 \n",
" 3888b56310e4431a888cc4289402bb1f e9ef431a486044858f5c1ec8fd969ce9 \n",
" And Jonathan stripped himself of the robe that... 8ed8c3c8f0e9425dbf71979ca8c23857 b585ce8c8e9943d18e94942131c8dab7 \n",
" And Samuel died; and all the Israelites were g... d297e1e0c6444e69a997481ec15a3b3a c6e933ff2692455198ce3a9736f0f965 \n",
" And Samuel grew, and the LORD was with him, an... d3f2ea6f5ffb4210872f72d2add0e61d f951f87593e34604aff3ef4399ac40ab \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 334d1b5885fa4cc7acd2269850cf7051 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 7d3aef6d610c460981e736c05d994ead \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 2ed69ced2c7f4adb98274a3148d785b4 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 8ff7c9b12efd4ebab2b2a21fc4cf60c7 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d eb6bf729d3ff443fa759962be89e5428 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d c13c09a9229c42d2a3c3cb49d1beed8d \n",
" d3f2ea6f5ffb4210872f72d2add0e61d a012c2be48c94dabadb3dc78e60f4121 \n",
" And Samuel said, Hath the LORD as great deligh... b995ced89ab344b39d914e51064a0461 6d902ab6740e4ed1a797998a9816db34 \n",
" b995ced89ab344b39d914e51064a0461 af6d78a3f5464a75942a583af7ad2f39 \n",
" b995ced89ab344b39d914e51064a0461 822685845dd14a54a63874c0d89a9dd2 \n",
" And Samuel told him every whit, and hid nothin... eb99771259c448cea8e422e26171ed0e 0b2729fb4287476aad33dde383502a71 \n",
" eb99771259c448cea8e422e26171ed0e dd5a0ada93f94442a3028bd2c64d4081 \n",
" eb99771259c448cea8e422e26171ed0e 7ce8b6041a9f4277ad5643ddd9c90534 \n",
" eb99771259c448cea8e422e26171ed0e fe42c8ef9ffb4447a5d93739f1ac400e \n",
" eb99771259c448cea8e422e26171ed0e 496e91db823e41e4b97d7568f91e7a80 \n",
" eb99771259c448cea8e422e26171ed0e 12df377b78f64017b40ad38250fd2465 \n",
" eb99771259c448cea8e422e26171ed0e eb3f127bd5de48a68c6cdbe40078e9dc \n",
" eb99771259c448cea8e422e26171ed0e c0998e749c664f2191455fc5e7294ff9 \n",
" eb99771259c448cea8e422e26171ed0e 57a0b659fe01442096c91f23f61eee42 \n",
" eb99771259c448cea8e422e26171ed0e 7452cafbc0304856b57ad6646edd7589 \n",
"\n",
" start \\\n",
"content example_id \n",
" According to all the works which they have don... ba82cb4349f7441cbb9d4ebe43fb0067 93 \n",
" And David said unto his men, Gird ye on every ... a437a32ed1bd4c84b410b9172b58f890 208 \n",
" a437a32ed1bd4c84b410b9172b58f890 221 \n",
" a437a32ed1bd4c84b410b9172b58f890 131 \n",
" a437a32ed1bd4c84b410b9172b58f890 94 \n",
" a437a32ed1bd4c84b410b9172b58f890 55 \n",
" a437a32ed1bd4c84b410b9172b58f890 11 \n",
" a437a32ed1bd4c84b410b9172b58f890 148 \n",
" a437a32ed1bd4c84b410b9172b58f890 117 \n",
" a437a32ed1bd4c84b410b9172b58f890 71 \n",
" a437a32ed1bd4c84b410b9172b58f890 30 \n",
" a437a32ed1bd4c84b410b9172b58f890 187 \n",
" a437a32ed1bd4c84b410b9172b58f890 162 \n",
" a437a32ed1bd4c84b410b9172b58f890 106 \n",
" a437a32ed1bd4c84b410b9172b58f890 87 \n",
" a437a32ed1bd4c84b410b9172b58f890 47 \n",
" a437a32ed1bd4c84b410b9172b58f890 25 \n",
" a437a32ed1bd4c84b410b9172b58f890 5 \n",
" And David sware moreover, and said, Thy father... 33f826ab61a24e1db60eb9bd3b0822aa 184 \n",
" 33f826ab61a24e1db60eb9bd3b0822aa 127 \n",
" 33f826ab61a24e1db60eb9bd3b0822aa 5 \n",
" And I will go out and stand beside my father i... 2742245bd54047c68220106985115fde 86 \n",
" 2742245bd54047c68220106985115fde 23 \n",
" And Jonathan spake good of David unto Saul his... 3888b56310e4431a888cc4289402bb1f 125 \n",
" 3888b56310e4431a888cc4289402bb1f 39 \n",
" 3888b56310e4431a888cc4289402bb1f 28 \n",
" 3888b56310e4431a888cc4289402bb1f 5 \n",
" And Jonathan stripped himself of the robe that... 8ed8c3c8f0e9425dbf71979ca8c23857 77 \n",
" And Samuel died; and all the Israelites were g... d297e1e0c6444e69a997481ec15a3b3a 125 \n",
" And Samuel grew, and the LORD was with him, an... d3f2ea6f5ffb4210872f72d2add0e61d 87 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 69 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 52 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 27 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 40 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 5 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 75 \n",
" d3f2ea6f5ffb4210872f72d2add0e61d 12 \n",
" And Samuel said, Hath the LORD as great deligh... b995ced89ab344b39d914e51064a0461 52 \n",
" b995ced89ab344b39d914e51064a0461 27 \n",
" b995ced89ab344b39d914e51064a0461 5 \n",
" And Samuel told him every whit, and hid nothin... eb99771259c448cea8e422e26171ed0e 12 \n",
" eb99771259c448cea8e422e26171ed0e 96 \n",
" eb99771259c448cea8e422e26171ed0e 66 \n",
" eb99771259c448cea8e422e26171ed0e 37 \n",
" eb99771259c448cea8e422e26171ed0e 112 \n",
" eb99771259c448cea8e422e26171ed0e 82 \n",
" eb99771259c448cea8e422e26171ed0e 63 \n",
" eb99771259c448cea8e422e26171ed0e 54 \n",
" eb99771259c448cea8e422e26171ed0e 17 \n",
" eb99771259c448cea8e422e26171ed0e 5 \n",
"\n",
" tag \\\n",
"content example_id \n",
" According to all the works which they have don... ba82cb4349f7441cbb9d4ebe43fb0067 Nation \n",
" And David said unto his men, Gird ye on every ... a437a32ed1bd4c84b410b9172b58f890 Object \n",
" a437a32ed1bd4c84b410b9172b58f890 Object \n",
" a437a32ed1bd4c84b410b9172b58f890 Object \n",
" a437a32ed1bd4c84b410b9172b58f890 Object \n",
" a437a32ed1bd4c84b410b9172b58f890 Object \n",
" a437a32ed1bd4c84b410b9172b58f890 Action \n",
" a437a32ed1bd4c84b410b9172b58f890 Action \n",
" a437a32ed1bd4c84b410b9172b58f890 Action \n",
" a437a32ed1bd4c84b410b9172b58f890 Action \n",
" a437a32ed1bd4c84b410b9172b58f890 Action \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" a437a32ed1bd4c84b410b9172b58f890 Person \n",
" And David sware moreover, and said, Thy father... 33f826ab61a24e1db60eb9bd3b0822aa God \n",
" 33f826ab61a24e1db60eb9bd3b0822aa Person \n",
" 33f826ab61a24e1db60eb9bd3b0822aa Person \n",
" And I will go out and stand beside my father i... 2742245bd54047c68220106985115fde Action \n",
" 2742245bd54047c68220106985115fde Action \n",
" And Jonathan spake good of David unto Saul his... 3888b56310e4431a888cc4289402bb1f Person \n",
" 3888b56310e4431a888cc4289402bb1f Person \n",
" 3888b56310e4431a888cc4289402bb1f Person \n",
" 3888b56310e4431a888cc4289402bb1f Person \n",
" And Jonathan stripped himself of the robe that... 8ed8c3c8f0e9425dbf71979ca8c23857 Person \n",
" And Samuel died; and all the Israelites were g... d297e1e0c6444e69a997481ec15a3b3a Person \n",
" And Samuel grew, and the LORD was with him, an... d3f2ea6f5ffb4210872f72d2add0e61d Place \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Object \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Action \n",
" d3f2ea6f5ffb4210872f72d2add0e61d God \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Person \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Person \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Action \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Action \n",
" And Samuel said, Hath the LORD as great deligh... b995ced89ab344b39d914e51064a0461 Object \n",
" b995ced89ab344b39d914e51064a0461 God \n",
" b995ced89ab344b39d914e51064a0461 Person \n",
" And Samuel told him every whit, and hid nothin... eb99771259c448cea8e422e26171ed0e Action \n",
" eb99771259c448cea8e422e26171ed0e Action \n",
" eb99771259c448cea8e422e26171ed0e Action \n",
" eb99771259c448cea8e422e26171ed0e Action \n",
" eb99771259c448cea8e422e26171ed0e God \n",
" eb99771259c448cea8e422e26171ed0e God \n",
" eb99771259c448cea8e422e26171ed0e God \n",
" eb99771259c448cea8e422e26171ed0e God \n",
" eb99771259c448cea8e422e26171ed0e God \n",
" eb99771259c448cea8e422e26171ed0e Person \n",
"\n",
" value \n",
"content example_id \n",
" According to all the works which they have don... ba82cb4349f7441cbb9d4ebe43fb0067 Egypt \n",
" And David said unto his men, Gird ye on every ... a437a32ed1bd4c84b410b9172b58f890 abode \n",
" a437a32ed1bd4c84b410b9172b58f890 stuff \n",
" a437a32ed1bd4c84b410b9172b58f890 sword \n",
" a437a32ed1bd4c84b410b9172b58f890 sword \n",
" a437a32ed1bd4c84b410b9172b58f890 sword \n",
" a437a32ed1bd4c84b410b9172b58f890 said \n",
" a437a32ed1bd4c84b410b9172b58f890 went \n",
" a437a32ed1bd4c84b410b9172b58f890 girded \n",
" a437a32ed1bd4c84b410b9172b58f890 girded \n",
" a437a32ed1bd4c84b410b9172b58f890 Gird \n",
" a437a32ed1bd4c84b410b9172b58f890 men \n",
" a437a32ed1bd4c84b410b9172b58f890 David \n",
" a437a32ed1bd4c84b410b9172b58f890 David \n",
" a437a32ed1bd4c84b410b9172b58f890 man \n",
" a437a32ed1bd4c84b410b9172b58f890 man \n",
" a437a32ed1bd4c84b410b9172b58f890 men \n",
" a437a32ed1bd4c84b410b9172b58f890 David \n",
" And David sware moreover, and said, Thy father... 33f826ab61a24e1db60eb9bd3b0822aa LORD \n",
" 33f826ab61a24e1db60eb9bd3b0822aa Jonathan \n",
" 33f826ab61a24e1db60eb9bd3b0822aa David \n",
" And I will go out and stand beside my father i... 2742245bd54047c68220106985115fde commune \n",
" 2742245bd54047c68220106985115fde stand \n",
" And Jonathan spake good of David unto Saul his... 3888b56310e4431a888cc4289402bb1f David \n",
" 3888b56310e4431a888cc4289402bb1f Saul \n",
" 3888b56310e4431a888cc4289402bb1f David \n",
" 3888b56310e4431a888cc4289402bb1f Jonathan \n",
" And Jonathan stripped himself of the robe that... 8ed8c3c8f0e9425dbf71979ca8c23857 David \n",
" And Samuel died; and all the Israelites were g... d297e1e0c6444e69a997481ec15a3b3a David \n",
" And Samuel grew, and the LORD was with him, an... d3f2ea6f5ffb4210872f72d2add0e61d ground \n",
" d3f2ea6f5ffb4210872f72d2add0e61d words \n",
" d3f2ea6f5ffb4210872f72d2add0e61d let \n",
" d3f2ea6f5ffb4210872f72d2add0e61d ORD \n",
" d3f2ea6f5ffb4210872f72d2add0e61d him \n",
" d3f2ea6f5ffb4210872f72d2add0e61d Samuel \n",
" d3f2ea6f5ffb4210872f72d2add0e61d fall \n",
" d3f2ea6f5ffb4210872f72d2add0e61d grew \n",
" And Samuel said, Hath the LORD as great deligh... b995ced89ab344b39d914e51064a0461 burnt offerings \n",
" b995ced89ab344b39d914e51064a0461 LORD \n",
" b995ced89ab344b39d914e51064a0461 Samuel \n",
" And Samuel told him every whit, and hid nothin... eb99771259c448cea8e422e26171ed0e told \n",
" eb99771259c448cea8e422e26171ed0e do \n",
" eb99771259c448cea8e422e26171ed0e said \n",
" eb99771259c448cea8e422e26171ed0e hid \n",
" eb99771259c448cea8e422e26171ed0e him \n",
" eb99771259c448cea8e422e26171ed0e LORD \n",
" eb99771259c448cea8e422e26171ed0e he \n",
" eb99771259c448cea8e422e26171ed0e him \n",
" eb99771259c448cea8e422e26171ed0e him \n",
" eb99771259c448cea8e422e26171ed0e Samuel "
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Annotations.set_index([\"content\",\"example_id\"]).sort_index().head(50)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment