nycdude
Power Member
- Oct 1, 2009
- 631
- 709
Hello!
I work on a lot of Natural Language Processing projects and built myself an API that does exactly the same thing as Amazon Comprehend or Google NLP etc.
If there's anyone out there that needs a similar solution I can offer my API to them for their use no charge. The API does it all, even sentiment.
Consider these results:
Input:
I have many different APIs, but check out two of these:
Output one:
Output two:
thanks for reading!
I work on a lot of Natural Language Processing projects and built myself an API that does exactly the same thing as Amazon Comprehend or Google NLP etc.
If there's anyone out there that needs a similar solution I can offer my API to them for their use no charge. The API does it all, even sentiment.
Consider these results:
Input:
Code:
So Della did it. Which instigates the moral reflection that life is made up of sobs, sniffles, and smiles, with sniffles predominating.
A harmless sentence of no consequence. It has been written, so let it be done.
No one knew why, because no one cared. Bob Dole and Bill Clinton have seen Barack Obama at the mall. Everyone was eating ice creams, one was vanilla and the rest were strawberry.
There was clearly nothing left to do but flop down on the shabby little couch and howl. Don't drink the water. Don't drink the beer but do drink the wine.
I have many different APIs, but check out two of these:
Output one:
Code:
{
"query_list": [{
"sent_paragraph": [{
"sent_num": 0,
"paragraph_num": 0,
"sent": "So Della did it.",
"sent_sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"ent_lister": [],
"noun_chunk": [
[
[
["Della", 1]
], "Della", 1, "PROPN", "nsubj", "NNP", "Della", "Della", 2, "VERB", "ROOT", "VBD", "do", "did"
],
[
[
["it", 3]
], "it", 3, "PRON", "dobj", "PRP", "it", "it", 2, "VERB", "ROOT", "VBD", "do", "did"
]
]
}, {
"sent_num": 1,
"paragraph_num": 0,
"sent": "Which instigates the moral reflection that life is made up of sobs, sniffles, and smiles, with sniffles predominating.",
"sent_sentiment": {
"neg": 0.155,
"neu": 0.708,
"pos": 0.137,
"compound": -0.1027
},
"ent_lister": [],
"noun_chunk": [
[
[
["the", 7],
["moral", 8],
["reflection", 9]
], "the moral reflection", 9, "NOUN", "dobj", "NN", "reflection", "reflection", 6, "VERB", "ROOT", "VBZ", "instigate", "instigates"
],
[
[
["life", 11]
], "life", 11, "NOUN", "nsubjpass", "NN", "life", "life", 13, "VERB", "acl", "VBN", "make", "made"
],
[
[
["sniffles", 18]
], "sniffles", 18, "NOUN", "dobj", "NNS", "sniffle", "sniffles", 6, "VERB", "ROOT", "VBZ", "instigate", "instigates"
],
[
[
["smiles", 21]
], "smiles", 21, "NOUN", "conj", "NNS", "smile", "smiles", 18, "NOUN", "dobj", "NNS", "sniffle", "sniffles"
],
[
[
["sniffles", 24]
], "sniffles", 24, "NOUN", "nsubj", "NNS", "sniffle", "sniffles", 25, "VERB", "pcomp", "VBG", "predominate", "predominating"
]
]
}],
"processed_word_list": [{
"word_index": 0,
"sent_num": 0,
"paragraph_index": 0,
"token_idx": 0,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "So",
"Lemma": "so",
"Part_Of_Speech": "ADV",
"POS_tag": "RB",
"POS_dep": "advmod",
"tolken_head": "did",
"children": []
}, {
"word_index": 1,
"sent_num": 0,
"paragraph_index": 0,
"token_idx": 3,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Della",
"Lemma": "Della",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "nsubj",
"tolken_head": "did",
"children": []
}, {
"word_index": 2,
"sent_num": 0,
"paragraph_index": 0,
"token_idx": 9,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "did",
"Lemma": "do",
"Part_Of_Speech": "VERB",
"POS_tag": "VBD",
"POS_dep": "ROOT",
"tolken_head": "did",
"children": ["So", "Della", "it", "."]
}, {
"word_index": 3,
"sent_num": 0,
"paragraph_index": 0,
"token_idx": 13,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "it",
"Lemma": "it",
"Part_Of_Speech": "PRON",
"POS_tag": "PRP",
"POS_dep": "dobj",
"tolken_head": "did",
"children": []
}, {
"word_index": 4,
"sent_num": 0,
"paragraph_index": 0,
"token_idx": 15,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "did",
"children": []
}, {
"word_index": 5,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 17,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Which",
"Lemma": "which",
"Part_Of_Speech": "DET",
"POS_tag": "WDT",
"POS_dep": "nsubj",
"tolken_head": "instigates",
"children": []
}, {
"word_index": 6,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 23,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "instigates",
"Lemma": "instigate",
"Part_Of_Speech": "VERB",
"POS_tag": "VBZ",
"POS_dep": "ROOT",
"tolken_head": "instigates",
"children": ["Which", "reflection", "sniffles", "with", "."]
}, {
"word_index": 7,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 34,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "reflection",
"children": []
}, {
"word_index": 8,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 38,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "moral",
"Lemma": "moral",
"Part_Of_Speech": "ADJ",
"POS_tag": "JJ",
"POS_dep": "amod",
"tolken_head": "reflection",
"children": []
}, {
"word_index": 9,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 44,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "reflection",
"Lemma": "reflection",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "dobj",
"tolken_head": "instigates",
"children": ["the", "moral", "made"]
}, {
"word_index": 10,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 55,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "that",
"Lemma": "that",
"Part_Of_Speech": "SCONJ",
"POS_tag": "IN",
"POS_dep": "mark",
"tolken_head": "made",
"children": []
}, {
"word_index": 11,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 60,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "life",
"Lemma": "life",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "nsubjpass",
"tolken_head": "made",
"children": []
}, {
"word_index": 12,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 65,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "is",
"Lemma": "be",
"Part_Of_Speech": "AUX",
"POS_tag": "VBZ",
"POS_dep": "auxpass",
"tolken_head": "made",
"children": []
}, {
"word_index": 13,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 68,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "made",
"Lemma": "make",
"Part_Of_Speech": "VERB",
"POS_tag": "VBN",
"POS_dep": "acl",
"tolken_head": "reflection",
"children": ["that", "life", "is", "up", "of"]
}, {
"word_index": 14,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 73,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "up",
"Lemma": "up",
"Part_Of_Speech": "ADP",
"POS_tag": "RP",
"POS_dep": "prt",
"tolken_head": "made",
"children": []
}, {
"word_index": 15,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 76,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "of",
"Lemma": "of",
"Part_Of_Speech": "ADP",
"POS_tag": "IN",
"POS_dep": "prep",
"tolken_head": "made",
"children": ["sobs"]
}, {
"word_index": 16,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 79,
"sentiment": {
"neg": 1.0,
"neu": 0.0,
"pos": 0.0,
"compound": -0.5423
},
"Tolken": "sobs",
"Lemma": "sobs",
"Part_Of_Speech": "ADJ",
"POS_tag": "JJ",
"POS_dep": "pobj",
"tolken_head": "of",
"children": [","]
}, {
"word_index": 17,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 83,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ",",
"Lemma": ",",
"Part_Of_Speech": "PUNCT",
"POS_tag": ",",
"POS_dep": "punct",
"tolken_head": "sobs",
"children": []
}, {
"word_index": 18,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 85,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "sniffles",
"Lemma": "sniffle",
"Part_Of_Speech": "NOUN",
"POS_tag": "NNS",
"POS_dep": "dobj",
"tolken_head": "instigates",
"children": [",", "and", "smiles"]
}, {
"word_index": 19,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 93,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ",",
"Lemma": ",",
"Part_Of_Speech": "PUNCT",
"POS_tag": ",",
"POS_dep": "punct",
"tolken_head": "sniffles",
"children": []
}, {
"word_index": 20,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 95,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "and",
"Lemma": "and",
"Part_Of_Speech": "CCONJ",
"POS_tag": "CC",
"POS_dep": "cc",
"tolken_head": "sniffles",
"children": []
}, {
"word_index": 21,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 99,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 1.0,
"compound": 0.4767
},
"Tolken": "smiles",
"Lemma": "smile",
"Part_Of_Speech": "NOUN",
"POS_tag": "NNS",
"POS_dep": "conj",
"tolken_head": "sniffles",
"children": [","]
}, {
"word_index": 22,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 105,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ",",
"Lemma": ",",
"Part_Of_Speech": "PUNCT",
"POS_tag": ",",
"POS_dep": "punct",
"tolken_head": "smiles",
"children": []
}, {
"word_index": 23,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 107,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "with",
"Lemma": "with",
"Part_Of_Speech": "ADP",
"POS_tag": "IN",
"POS_dep": "prep",
"tolken_head": "instigates",
"children": ["predominating"]
}, {
"word_index": 24,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 112,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "sniffles",
"Lemma": "sniffle",
"Part_Of_Speech": "NOUN",
"POS_tag": "NNS",
"POS_dep": "nsubj",
"tolken_head": "predominating",
"children": []
}, {
"word_index": 25,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 121,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "predominating",
"Lemma": "predominate",
"Part_Of_Speech": "VERB",
"POS_tag": "VBG",
"POS_dep": "pcomp",
"tolken_head": "with",
"children": ["sniffles"]
}, {
"word_index": 26,
"sent_num": 1,
"paragraph_index": 0,
"token_idx": 134,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "instigates",
"children": []
}]
}, {
"sent_paragraph": [{
"sent_num": 2,
"paragraph_num": 1,
"sent": "A harmless sentence of no consequence.",
"sent_sentiment": {
"neg": 0.293,
"neu": 0.267,
"pos": 0.44,
"compound": 0.0258
},
"ent_lister": [],
"noun_chunk": [
[
[
["A", 0],
["harmless", 1],
["sentence", 2]
], "A harmless sentence", 2, "NOUN", "ROOT", "NN", "sentence", "sentence", 2, "NOUN", "ROOT", "NN", "sentence", "sentence"
],
[
[
["no", 4],
["consequence", 5]
], "no consequence", 5, "NOUN", "pobj", "NN", "consequence", "consequence", 3, "ADP", "prep", "IN", "of", "of"
]
]
}, {
"sent_num": 3,
"paragraph_num": 1,
"sent": "It has been written, so let it be done.",
"sent_sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"ent_lister": [],
"noun_chunk": [
[
[
["It", 7]
], "It", 7, "PRON", "nsubjpass", "PRP", "it", "It", 10, "VERB", "ROOT", "VBN", "write", "written"
],
[
[
["it", 14]
], "it", 14, "PRON", "nsubjpass", "PRP", "it", "it", 16, "VERB", "ccomp", "VBN", "do", "done"
]
]
}],
"processed_word_list": [{
"word_index": 0,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 0,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "A",
"Lemma": "a",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "sentence",
"children": []
}, {
"word_index": 1,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 2,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 1.0,
"compound": 0.25
},
"Tolken": "harmless",
"Lemma": "harmless",
"Part_Of_Speech": "ADJ",
"POS_tag": "JJ",
"POS_dep": "amod",
"tolken_head": "sentence",
"children": []
}, {
"word_index": 2,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 11,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 1.0,
"compound": 0.0772
},
"Tolken": "sentence",
"Lemma": "sentence",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "ROOT",
"tolken_head": "sentence",
"children": ["A", "harmless", "of", "."]
}, {
"word_index": 3,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 20,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "of",
"Lemma": "of",
"Part_Of_Speech": "ADP",
"POS_tag": "IN",
"POS_dep": "prep",
"tolken_head": "sentence",
"children": ["consequence"]
}, {
"word_index": 4,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 23,
"sentiment": {
"neg": 1.0,
"neu": 0.0,
"pos": 0.0,
"compound": -0.296
},
"Tolken": "no",
"Lemma": "no",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "consequence",
"children": []
}, {
"word_index": 5,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 26,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "consequence",
"Lemma": "consequence",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "pobj",
"tolken_head": "of",
"children": ["no"]
}, {
"word_index": 6,
"sent_num": 2,
"paragraph_index": 1,
"token_idx": 37,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "sentence",
"children": []
}, {
"word_index": 7,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 39,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "It",
"Lemma": "it",
"Part_Of_Speech": "PRON",
"POS_tag": "PRP",
"POS_dep": "nsubjpass",
"tolken_head": "written",
"children": []
}, {
"word_index": 8,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 42,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "has",
"Lemma": "have",
"Part_Of_Speech": "AUX",
"POS_tag": "VBZ",
"POS_dep": "aux",
"tolken_head": "written",
"children": []
}, {
"word_index": 9,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 46,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "been",
"Lemma": "be",
"Part_Of_Speech": "AUX",
"POS_tag": "VBN",
"POS_dep": "auxpass",
"tolken_head": "written",
"children": []
}, {
"word_index": 10,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 51,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "written",
"Lemma": "write",
"Part_Of_Speech": "VERB",
"POS_tag": "VBN",
"POS_dep": "ROOT",
"tolken_head": "written",
"children": ["It", "has", "been", ",", "let", "."]
}, {
"word_index": 11,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 58,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ",",
"Lemma": ",",
"Part_Of_Speech": "PUNCT",
"POS_tag": ",",
"POS_dep": "punct",
"tolken_head": "written",
"children": []
}, {
"word_index": 12,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 60,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "so",
"Lemma": "so",
"Part_Of_Speech": "ADV",
"POS_tag": "RB",
"POS_dep": "advmod",
"tolken_head": "let",
"children": []
}, {
"word_index": 13,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 63,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "let",
"Lemma": "let",
"Part_Of_Speech": "VERB",
"POS_tag": "VB",
"POS_dep": "conj",
"tolken_head": "written",
"children": ["so", "done"]
}, {
"word_index": 14,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 67,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "it",
"Lemma": "it",
"Part_Of_Speech": "PRON",
"POS_tag": "PRP",
"POS_dep": "nsubjpass",
"tolken_head": "done",
"children": []
}, {
"word_index": 15,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 70,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "be",
"Lemma": "be",
"Part_Of_Speech": "AUX",
"POS_tag": "VB",
"POS_dep": "auxpass",
"tolken_head": "done",
"children": []
}, {
"word_index": 16,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 73,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "done",
"Lemma": "do",
"Part_Of_Speech": "VERB",
"POS_tag": "VBN",
"POS_dep": "ccomp",
"tolken_head": "let",
"children": ["it", "be"]
}, {
"word_index": 17,
"sent_num": 3,
"paragraph_index": 1,
"token_idx": 77,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "written",
"children": []
}]
}, {
"sent_paragraph": [{
"sent_num": 4,
"paragraph_num": 2,
"sent": "No one knew why, because no one cared.",
"sent_sentiment": {
"neg": 0.361,
"neu": 0.41,
"pos": 0.23,
"compound": -0.1531
},
"ent_lister": [],
"noun_chunk": [
[
[
["No", 0],
["one", 1]
], "No one", 1, "NOUN", "nsubj", "NN", "one", "one", 2, "VERB", "ROOT", "VBD", "know", "knew"
],
[
[
["no", 6],
["one", 7]
], "no one", 7, "NOUN", "nsubj", "NN", "one", "one", 8, "VERB", "advcl", "VBD", "care", "cared"
]
]
}, {
"sent_num": 5,
"paragraph_num": 2,
"sent": "Bob Dole and Bill Clinton have seen Barack Obama at the mall.",
"sent_sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"ent_lister": [{
"ent_index": [
["Bob", 10],
["Dole", 11]
],
"Entity": "Bob Dole",
"start_char": 39,
"end_char": 47,
"label_": "PERSON"
}, {
"ent_index": [
["Bill", 13],
["Clinton", 14]
],
"Entity": "Bill Clinton",
"start_char": 52,
"end_char": 64,
"label_": "PERSON"
}, {
"ent_index": [
["Barack", 17]
],
"Entity": "Barack",
"start_char": 75,
"end_char": 81,
"label_": "PERSON"
}],
"noun_chunk": [
[
[
["Bob", 10],
["Dole", 11]
], "Bob Dole", 11, "PROPN", "nsubj", "NNP", "Dole", "Dole", 16, "VERB", "ROOT", "VBN", "see", "seen"
],
[
[
["Bill", 13],
["Clinton", 14]
], "Bill Clinton", 14, "PROPN", "conj", "NNP", "Clinton", "Clinton", 11, "PROPN", "nsubj", "NNP", "Dole", "Dole"
],
[
[
["Barack", 17],
["Obama", 18]
], "Barack Obama", 18, "PROPN", "dobj", "NNP", "Obama", "Obama", 16, "VERB", "ROOT", "VBN", "see", "seen"
],
[
[
["the", 20],
["mall", 21]
], "the mall", 21, "NOUN", "pobj", "NN", "mall", "mall", 19, "ADP", "prep", "IN", "at", "at"
]
]
}, {
"sent_num": 6,
"paragraph_num": 2,
"sent": "Everyone was eating ice creams, one was vanilla and the rest were strawberry.",
"sent_sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"ent_lister": [],
"noun_chunk": [
[
[
["Everyone", 23]
], "Everyone", 23, "PRON", "nsubj", "NN", "everyone", "Everyone", 25, "VERB", "ccomp", "VBG", "eat", "eating"
],
[
[
["ice", 26],
["creams", 27]
], "ice creams", 27, "NOUN", "dobj", "NNS", "cream", "creams", 25, "VERB", "ccomp", "VBG", "eat", "eating"
],
[
[
["vanilla", 31]
], "vanilla", 31, "NOUN", "attr", "NN", "vanilla", "vanilla", 30, "AUX", "ROOT", "VBD", "be", "was"
],
[
[
["the", 33],
["rest", 34]
], "the rest", 34, "NOUN", "nsubj", "NN", "rest", "rest", 35, "VERB", "conj", "VBD", "be", "were"
],
[
[
["strawberry", 36]
], "strawberry", 36, "NOUN", "attr", "NN", "strawberry", "strawberry", 35, "VERB", "conj", "VBD", "be", "were"
]
]
}],
"processed_word_list": [{
"word_index": 0,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 0,
"sentiment": {
"neg": 1.0,
"neu": 0.0,
"pos": 0.0,
"compound": -0.296
},
"Tolken": "No",
"Lemma": "no",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "one",
"children": []
}, {
"word_index": 1,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 3,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "one",
"Lemma": "one",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "nsubj",
"tolken_head": "knew",
"children": ["No"]
}, {
"word_index": 2,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 7,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "knew",
"Lemma": "know",
"Part_Of_Speech": "VERB",
"POS_tag": "VBD",
"POS_dep": "ROOT",
"tolken_head": "knew",
"children": ["one", "why", ",", "cared", "."]
}, {
"word_index": 3,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 12,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "why",
"Lemma": "why",
"Part_Of_Speech": "ADV",
"POS_tag": "WRB",
"POS_dep": "advmod",
"tolken_head": "knew",
"children": []
}, {
"word_index": 4,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 15,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ",",
"Lemma": ",",
"Part_Of_Speech": "PUNCT",
"POS_tag": ",",
"POS_dep": "punct",
"tolken_head": "knew",
"children": []
}, {
"word_index": 5,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 17,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "because",
"Lemma": "because",
"Part_Of_Speech": "SCONJ",
"POS_tag": "IN",
"POS_dep": "mark",
"tolken_head": "cared",
"children": []
}, {
"word_index": 6,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 25,
"sentiment": {
"neg": 1.0,
"neu": 0.0,
"pos": 0.0,
"compound": -0.296
},
"Tolken": "no",
"Lemma": "no",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "one",
"children": []
}, {
"word_index": 7,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 28,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "one",
"Lemma": "one",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "nsubj",
"tolken_head": "cared",
"children": ["no"]
}, {
"word_index": 8,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 32,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 1.0,
"compound": 0.4215
},
"Tolken": "cared",
"Lemma": "care",
"Part_Of_Speech": "VERB",
"POS_tag": "VBD",
"POS_dep": "advcl",
"tolken_head": "knew",
"children": ["because", "one"]
}, {
"word_index": 9,
"sent_num": 4,
"paragraph_index": 2,
"token_idx": 37,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "knew",
"children": []
}, {
"word_index": 10,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 39,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Bob",
"Lemma": "Bob",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "compound",
"tolken_head": "Dole",
"children": []
}, {
"word_index": 11,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 43,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Dole",
"Lemma": "Dole",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "nsubj",
"tolken_head": "seen",
"children": ["Bob", "and", "Clinton"]
}, {
"word_index": 12,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 48,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "and",
"Lemma": "and",
"Part_Of_Speech": "CCONJ",
"POS_tag": "CC",
"POS_dep": "cc",
"tolken_head": "Dole",
"children": []
}, {
"word_index": 13,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 52,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Bill",
"Lemma": "Bill",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "compound",
"tolken_head": "Clinton",
"children": []
}, {
"word_index": 14,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 57,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Clinton",
"Lemma": "Clinton",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "conj",
"tolken_head": "Dole",
"children": ["Bill"]
}, {
"word_index": 15,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 65,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "have",
"Lemma": "have",
"Part_Of_Speech": "AUX",
"POS_tag": "VBP",
"POS_dep": "aux",
"tolken_head": "seen",
"children": []
}, {
"word_index": 16,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 70,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "seen",
"Lemma": "see",
"Part_Of_Speech": "VERB",
"POS_tag": "VBN",
"POS_dep": "ROOT",
"tolken_head": "seen",
"children": ["Dole", "have", "Obama", "at", "."]
}, {
"word_index": 17,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 75,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Barack",
"Lemma": "Barack",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "compound",
"tolken_head": "Obama",
"children": []
}, {
"word_index": 18,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 82,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Obama",
"Lemma": "Obama",
"Part_Of_Speech": "PROPN",
"POS_tag": "NNP",
"POS_dep": "dobj",
"tolken_head": "seen",
"children": ["Barack"]
}, {
"word_index": 19,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 88,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "at",
"Lemma": "at",
"Part_Of_Speech": "ADP",
"POS_tag": "IN",
"POS_dep": "prep",
"tolken_head": "seen",
"children": ["mall"]
}, {
"word_index": 20,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 91,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "mall",
"children": []
}, {
"word_index": 21,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 95,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "mall",
"Lemma": "mall",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "pobj",
"tolken_head": "at",
"children": ["the"]
}, {
"word_index": 22,
"sent_num": 5,
"paragraph_index": 2,
"token_idx": 99,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "seen",
"children": []
}, {
"word_index": 23,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 101,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Everyone",
"Lemma": "everyone",
"Part_Of_Speech": "PRON",
"POS_tag": "NN",
"POS_dep": "nsubj",
"tolken_head": "eating",
"children": []
}, {
"word_index": 24,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 110,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "was",
"Lemma": "be",
"Part_Of_Speech": "AUX",
"POS_tag": "VBD",
"POS_dep": "aux",
"tolken_head": "eating",
"children": []
}, {
"word_index": 25,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 114,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "eating",
"Lemma": "eat",
"Part_Of_Speech": "VERB",
"POS_tag": "VBG",
"POS_dep": "ccomp",
"tolken_head": "was",
"children": ["Everyone", "was", "creams"]
}, {
"word_index": 26,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 121,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "ice",
"Lemma": "ice",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "compound",
"tolken_head": "creams",
"children": []
}, {
"word_index": 27,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 125,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "creams",
"Lemma": "cream",
"Part_Of_Speech": "NOUN",
"POS_tag": "NNS",
"POS_dep": "dobj",
"tolken_head": "eating",
"children": ["ice"]
}, {
"word_index": 28,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 131,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ",",
"Lemma": ",",
"Part_Of_Speech": "PUNCT",
"POS_tag": ",",
"POS_dep": "punct",
"tolken_head": "was",
"children": []
}, {
"word_index": 29,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 133,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "one",
"Lemma": "one",
"Part_Of_Speech": "NUM",
"POS_tag": "CD",
"POS_dep": "nsubj",
"tolken_head": "was",
"children": []
}, {
"word_index": 30,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 137,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "was",
"Lemma": "be",
"Part_Of_Speech": "AUX",
"POS_tag": "VBD",
"POS_dep": "ROOT",
"tolken_head": "was",
"children": ["eating", ",", "one", "vanilla", "and", "were"]
}, {
"word_index": 31,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 141,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "vanilla",
"Lemma": "vanilla",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "attr",
"tolken_head": "was",
"children": []
}, {
"word_index": 32,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 149,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "and",
"Lemma": "and",
"Part_Of_Speech": "CCONJ",
"POS_tag": "CC",
"POS_dep": "cc",
"tolken_head": "was",
"children": []
}, {
"word_index": 33,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 153,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "rest",
"children": []
}, {
"word_index": 34,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 157,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "rest",
"Lemma": "rest",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "nsubj",
"tolken_head": "were",
"children": ["the"]
}, {
"word_index": 35,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 162,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "were",
"Lemma": "be",
"Part_Of_Speech": "VERB",
"POS_tag": "VBD",
"POS_dep": "conj",
"tolken_head": "was",
"children": ["rest", "strawberry", "."]
}, {
"word_index": 36,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 167,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "strawberry",
"Lemma": "strawberry",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "attr",
"tolken_head": "were",
"children": []
}, {
"word_index": 37,
"sent_num": 6,
"paragraph_index": 2,
"token_idx": 177,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "were",
"children": []
}]
}, {
"sent_paragraph": [{
"sent_num": 7,
"paragraph_num": 3,
"sent": "There was clearly nothing left to do but flop down on the shabby little couch and howl.",
"sent_sentiment": {
"neg": 0.155,
"neu": 0.752,
"pos": 0.093,
"compound": -0.3071
},
"ent_lister": [],
"noun_chunk": [
[
[
["nothing", 3]
], "nothing", 3, "PRON", "attr", "NN", "nothing", "nothing", 1, "AUX", "ROOT", "VBD", "be", "was"
],
[
[
["the", 11],
["shabby", 12],
["little", 13],
["couch", 14]
], "the shabby little couch", 14, "NOUN", "pobj", "NN", "couch", "couch", 10, "ADP", "prep", "IN", "on", "on"
],
[
[
["howl", 16]
], "howl", 16, "NOUN", "conj", "NN", "howl", "howl", 14, "NOUN", "pobj", "NN", "couch", "couch"
]
]
}, {
"sent_num": 8,
"paragraph_num": 3,
"sent": "Don't drink the water.",
"sent_sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"ent_lister": [],
"noun_chunk": [
[
[
["the", 21],
["water", 22]
], "the water", 22, "NOUN", "dobj", "NN", "water", "water", 20, "VERB", "ROOT", "VB", "drink", "drink"
]
]
}, {
"sent_num": 9,
"paragraph_num": 3,
"sent": "Don't drink the beer but do drink the wine.",
"sent_sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"ent_lister": [],
"noun_chunk": [
[
[
["the", 27],
["beer", 28]
], "the beer", 28, "NOUN", "dobj", "NN", "beer", "beer", 26, "VERB", "ROOT", "VB", "drink", "drink"
],
[
[
["the", 32],
["wine", 33]
], "the wine", 33, "NOUN", "dobj", "NN", "wine", "wine", 31, "VERB", "conj", "VB", "drink", "drink"
]
]
}],
"processed_word_list": [{
"word_index": 0,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 0,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "There",
"Lemma": "there",
"Part_Of_Speech": "PRON",
"POS_tag": "EX",
"POS_dep": "expl",
"tolken_head": "was",
"children": []
}, {
"word_index": 1,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 6,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "was",
"Lemma": "be",
"Part_Of_Speech": "AUX",
"POS_tag": "VBD",
"POS_dep": "ROOT",
"tolken_head": "was",
"children": ["There", "clearly", "nothing", "."]
}, {
"word_index": 2,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 10,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 1.0,
"compound": 0.4019
},
"Tolken": "clearly",
"Lemma": "clearly",
"Part_Of_Speech": "ADV",
"POS_tag": "RB",
"POS_dep": "advmod",
"tolken_head": "was",
"children": []
}, {
"word_index": 3,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 18,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "nothing",
"Lemma": "nothing",
"Part_Of_Speech": "PRON",
"POS_tag": "NN",
"POS_dep": "attr",
"tolken_head": "was",
"children": ["left"]
}, {
"word_index": 4,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 26,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "left",
"Lemma": "leave",
"Part_Of_Speech": "VERB",
"POS_tag": "VBN",
"POS_dep": "acl",
"tolken_head": "nothing",
"children": ["do", "but", "flop"]
}, {
"word_index": 5,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 31,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "to",
"Lemma": "to",
"Part_Of_Speech": "PART",
"POS_tag": "TO",
"POS_dep": "aux",
"tolken_head": "do",
"children": []
}, {
"word_index": 6,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 34,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "do",
"Lemma": "do",
"Part_Of_Speech": "VERB",
"POS_tag": "VB",
"POS_dep": "advcl",
"tolken_head": "left",
"children": ["to"]
}, {
"word_index": 7,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 37,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "but",
"Lemma": "but",
"Part_Of_Speech": "CCONJ",
"POS_tag": "CC",
"POS_dep": "cc",
"tolken_head": "left",
"children": []
}, {
"word_index": 8,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 41,
"sentiment": {
"neg": 1.0,
"neu": 0.0,
"pos": 0.0,
"compound": -0.34
},
"Tolken": "flop",
"Lemma": "flop",
"Part_Of_Speech": "VERB",
"POS_tag": "VB",
"POS_dep": "conj",
"tolken_head": "left",
"children": ["down", "on"]
}, {
"word_index": 9,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 46,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "down",
"Lemma": "down",
"Part_Of_Speech": "ADP",
"POS_tag": "RP",
"POS_dep": "prt",
"tolken_head": "flop",
"children": []
}, {
"word_index": 10,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 51,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "on",
"Lemma": "on",
"Part_Of_Speech": "ADP",
"POS_tag": "IN",
"POS_dep": "prep",
"tolken_head": "flop",
"children": ["couch"]
}, {
"word_index": 11,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 54,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "couch",
"children": []
}, {
"word_index": 12,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 58,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "shabby",
"Lemma": "shabby",
"Part_Of_Speech": "ADJ",
"POS_tag": "JJ",
"POS_dep": "amod",
"tolken_head": "couch",
"children": []
}, {
"word_index": 13,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 65,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "little",
"Lemma": "little",
"Part_Of_Speech": "ADJ",
"POS_tag": "JJ",
"POS_dep": "amod",
"tolken_head": "couch",
"children": []
}, {
"word_index": 14,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 72,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "couch",
"Lemma": "couch",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "pobj",
"tolken_head": "on",
"children": ["the", "shabby", "little", "and", "howl"]
}, {
"word_index": 15,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 78,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "and",
"Lemma": "and",
"Part_Of_Speech": "CCONJ",
"POS_tag": "CC",
"POS_dep": "cc",
"tolken_head": "couch",
"children": []
}, {
"word_index": 16,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 82,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "howl",
"Lemma": "howl",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "conj",
"tolken_head": "couch",
"children": []
}, {
"word_index": 17,
"sent_num": 7,
"paragraph_index": 3,
"token_idx": 86,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "was",
"children": []
}, {
"word_index": 18,
"sent_num": 8,
"paragraph_index": 3,
"token_idx": 88,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Do",
"Lemma": "do",
"Part_Of_Speech": "AUX",
"POS_tag": "VB",
"POS_dep": "aux",
"tolken_head": "drink",
"children": []
}, {
"word_index": 19,
"sent_num": 8,
"paragraph_index": 3,
"token_idx": 90,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "n't",
"Lemma": "n't",
"Part_Of_Speech": "PART",
"POS_tag": "RB",
"POS_dep": "neg",
"tolken_head": "drink",
"children": []
}, {
"word_index": 20,
"sent_num": 8,
"paragraph_index": 3,
"token_idx": 94,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "drink",
"Lemma": "drink",
"Part_Of_Speech": "VERB",
"POS_tag": "VB",
"POS_dep": "ROOT",
"tolken_head": "drink",
"children": ["Do", "n't", "water", "."]
}, {
"word_index": 21,
"sent_num": 8,
"paragraph_index": 3,
"token_idx": 100,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "water",
"children": []
}, {
"word_index": 22,
"sent_num": 8,
"paragraph_index": 3,
"token_idx": 104,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "water",
"Lemma": "water",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "dobj",
"tolken_head": "drink",
"children": ["the"]
}, {
"word_index": 23,
"sent_num": 8,
"paragraph_index": 3,
"token_idx": 109,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "drink",
"children": []
}, {
"word_index": 24,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 111,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "Do",
"Lemma": "do",
"Part_Of_Speech": "AUX",
"POS_tag": "VB",
"POS_dep": "aux",
"tolken_head": "drink",
"children": []
}, {
"word_index": 25,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 113,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "n't",
"Lemma": "n't",
"Part_Of_Speech": "PART",
"POS_tag": "RB",
"POS_dep": "neg",
"tolken_head": "drink",
"children": []
}, {
"word_index": 26,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 117,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "drink",
"Lemma": "drink",
"Part_Of_Speech": "VERB",
"POS_tag": "VB",
"POS_dep": "ROOT",
"tolken_head": "drink",
"children": ["Do", "n't", "beer", "but", "drink", "."]
}, {
"word_index": 27,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 123,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "beer",
"children": []
}, {
"word_index": 28,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 127,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "beer",
"Lemma": "beer",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "dobj",
"tolken_head": "drink",
"children": ["the"]
}, {
"word_index": 29,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 132,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "but",
"Lemma": "but",
"Part_Of_Speech": "CCONJ",
"POS_tag": "CC",
"POS_dep": "cc",
"tolken_head": "drink",
"children": []
}, {
"word_index": 30,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 136,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "do",
"Lemma": "do",
"Part_Of_Speech": "AUX",
"POS_tag": "VB",
"POS_dep": "aux",
"tolken_head": "drink",
"children": []
}, {
"word_index": 31,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 139,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "drink",
"Lemma": "drink",
"Part_Of_Speech": "VERB",
"POS_tag": "VB",
"POS_dep": "conj",
"tolken_head": "drink",
"children": ["do", "wine"]
}, {
"word_index": 32,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 145,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "the",
"Lemma": "the",
"Part_Of_Speech": "DET",
"POS_tag": "DT",
"POS_dep": "det",
"tolken_head": "wine",
"children": []
}, {
"word_index": 33,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 149,
"sentiment": {
"neg": 0.0,
"neu": 1.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": "wine",
"Lemma": "wine",
"Part_Of_Speech": "NOUN",
"POS_tag": "NN",
"POS_dep": "dobj",
"tolken_head": "drink",
"children": ["the"]
}, {
"word_index": 34,
"sent_num": 9,
"paragraph_index": 3,
"token_idx": 153,
"sentiment": {
"neg": 0.0,
"neu": 0.0,
"pos": 0.0,
"compound": 0.0
},
"Tolken": ".",
"Lemma": ".",
"Part_Of_Speech": "PUNCT",
"POS_tag": ".",
"POS_dep": "punct",
"tolken_head": "drink",
"children": []
}]
}]
}
Output two:
Code:
{
"query_list": [{
"sent_list": [{
"sent_num": 0
}, {
"paragraph_num": 0
}, {
"sent": "So Della did it."
}, {
"feelz_sent": ["neu", "1.0"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["Della", 1]
], "Della", [1, "PROPN", "nsubj", "NNP", "Della", "Della"],
[2, "VERB", "ROOT", "VBD", "do", "did"]
],
[
[
["it", 3]
], "it", [3, "PRON", "dobj", "PRP", "it", "it"],
[2, "VERB", "ROOT", "VBD", "do", "did"]
]
]
}, {
"sent_num": 1
}, {
"paragraph_num": 0
}, {
"sent": "Which instigates the moral reflection that life is made up of sobs, sniffles, and smiles, with sniffles predominating."
}, {
"feelz_sent": ["neu", "0.708"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["the", 7],
["moral", 8],
["reflection", 9]
], "the moral reflection", [9, "NOUN", "dobj", "NN", "reflection", "reflection"],
[6, "VERB", "ROOT", "VBZ", "instigate", "instigates"]
],
[
[
["life", 11]
], "life", [11, "NOUN", "nsubjpass", "NN", "life", "life"],
[13, "VERB", "acl", "VBN", "make", "made"]
],
[
[
["sniffles", 18]
], "sniffles", [18, "NOUN", "dobj", "NNS", "sniffle", "sniffles"],
[6, "VERB", "ROOT", "VBZ", "instigate", "instigates"]
],
[
[
["smiles", 21]
], "smiles", [21, "NOUN", "conj", "NNS", "smile", "smiles"],
[18, "NOUN", "dobj", "NNS", "sniffle", "sniffles"]
],
[
[
["sniffles", 24]
], "sniffles", [24, "NOUN", "nsubj", "NNS", "sniffle", "sniffles"],
[25, "VERB", "pcomp", "VBG", "predominate", "predominating"]
]
]
}, {
"sent_num": 2
}, {
"paragraph_num": 1
}, {
"sent": "A harmless sentence of no consequence."
}, {
"feelz_sent": ["pos", "0.44"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["A", 0],
["harmless", 1],
["sentence", 2]
], "A harmless sentence", [2, "NOUN", "ROOT", "NN", "sentence", "sentence"],
[2, "NOUN", "ROOT", "NN", "sentence", "sentence"]
],
[
[
["no", 4],
["consequence", 5]
], "no consequence", [5, "NOUN", "pobj", "NN", "consequence", "consequence"],
[3, "ADP", "prep", "IN", "of", "of"]
]
]
}, {
"sent_num": 3
}, {
"paragraph_num": 1
}, {
"sent": "It has been written, so let it be done."
}, {
"feelz_sent": ["neu", "1.0"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["It", 7]
], "It", [7, "PRON", "nsubjpass", "PRP", "it", "It"],
[10, "VERB", "ROOT", "VBN", "write", "written"]
],
[
[
["it", 14]
], "it", [14, "PRON", "nsubjpass", "PRP", "it", "it"],
[16, "VERB", "ccomp", "VBN", "do", "done"]
]
]
}, {
"sent_num": 4
}, {
"paragraph_num": 2
}, {
"sent": "No one knew why, because no one cared."
}, {
"feelz_sent": ["neu", "0.41"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["No", 0],
["one", 1]
], "No one", [1, "NOUN", "nsubj", "NN", "one", "one"],
[2, "VERB", "ROOT", "VBD", "know", "knew"]
],
[
[
["no", 6],
["one", 7]
], "no one", [7, "NOUN", "nsubj", "NN", "one", "one"],
[8, "VERB", "advcl", "VBD", "care", "cared"]
]
]
}, {
"sent_num": 5
}, {
"paragraph_num": 2
}, {
"sent": "Bob Dole and Bill Clinton have seen Barack Obama at the mall."
}, {
"feelz_sent": ["neu", "1.0"]
}, {
"ent_lister": [{
"ent_index": [
["Bob", 10],
["Dole", 11]
],
"Entity": "Bob Dole",
"start_char": 39,
"end_char": 47,
"label_": "PERSON"
}, {
"ent_index": [
["Bill", 13],
["Clinton", 14]
],
"Entity": "Bill Clinton",
"start_char": 52,
"end_char": 64,
"label_": "PERSON"
}, {
"ent_index": [
["Barack", 17]
],
"Entity": "Barack",
"start_char": 75,
"end_char": 81,
"label_": "PERSON"
}]
}, {
"noun_chunk": [
[
[
["Bob", 10],
["Dole", 11]
], "Bob Dole", [11, "PROPN", "nsubj", "NNP", "Dole", "Dole"],
[16, "VERB", "ROOT", "VBN", "see", "seen"]
],
[
[
["Bill", 13],
["Clinton", 14]
], "Bill Clinton", [14, "PROPN", "conj", "NNP", "Clinton", "Clinton"],
[11, "PROPN", "nsubj", "NNP", "Dole", "Dole"]
],
[
[
["Barack", 17],
["Obama", 18]
], "Barack Obama", [18, "PROPN", "dobj", "NNP", "Obama", "Obama"],
[16, "VERB", "ROOT", "VBN", "see", "seen"]
],
[
[
["the", 20],
["mall", 21]
], "the mall", [21, "NOUN", "pobj", "NN", "mall", "mall"],
[19, "ADP", "prep", "IN", "at", "at"]
]
]
}, {
"sent_num": 6
}, {
"paragraph_num": 2
}, {
"sent": "Everyone was eating ice creams, one was vanilla and the rest were strawberry."
}, {
"feelz_sent": ["neu", "1.0"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["Everyone", 23]
], "Everyone", [23, "PRON", "nsubj", "NN", "everyone", "Everyone"],
[25, "VERB", "ccomp", "VBG", "eat", "eating"]
],
[
[
["ice", 26],
["creams", 27]
], "ice creams", [27, "NOUN", "dobj", "NNS", "cream", "creams"],
[25, "VERB", "ccomp", "VBG", "eat", "eating"]
],
[
[
["vanilla", 31]
], "vanilla", [31, "NOUN", "attr", "NN", "vanilla", "vanilla"],
[30, "AUX", "ROOT", "VBD", "be", "was"]
],
[
[
["the", 33],
["rest", 34]
], "the rest", [34, "NOUN", "nsubj", "NN", "rest", "rest"],
[35, "VERB", "conj", "VBD", "be", "were"]
],
[
[
["strawberry", 36]
], "strawberry", [36, "NOUN", "attr", "NN", "strawberry", "strawberry"],
[35, "VERB", "conj", "VBD", "be", "were"]
]
]
}, {
"sent_num": 7
}, {
"paragraph_num": 3
}, {
"sent": "There was clearly nothing left to do but flop down on the shabby little couch and howl."
}, {
"feelz_sent": ["neu", "0.752"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["nothing", 3]
], "nothing", [3, "PRON", "attr", "NN", "nothing", "nothing"],
[1, "AUX", "ROOT", "VBD", "be", "was"]
],
[
[
["the", 11],
["shabby", 12],
["little", 13],
["couch", 14]
], "the shabby little couch", [14, "NOUN", "pobj", "NN", "couch", "couch"],
[10, "ADP", "prep", "IN", "on", "on"]
],
[
[
["howl", 16]
], "howl", [16, "NOUN", "conj", "NN", "howl", "howl"],
[14, "NOUN", "pobj", "NN", "couch", "couch"]
]
]
}, {
"sent_num": 8
}, {
"paragraph_num": 3
}, {
"sent": "Don't drink the water."
}, {
"feelz_sent": ["neu", "1.0"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["the", 21],
["water", 22]
], "the water", [22, "NOUN", "dobj", "NN", "water", "water"],
[20, "VERB", "ROOT", "VB", "drink", "drink"]
]
]
}, {
"sent_num": 9
}, {
"paragraph_num": 3
}, {
"sent": "Don't drink the beer but do drink the wine."
}, {
"feelz_sent": ["neu", "1.0"]
}, {
"ent_lister": []
}, {
"noun_chunk": [
[
[
["the", 27],
["beer", 28]
], "the beer", [28, "NOUN", "dobj", "NN", "beer", "beer"],
[26, "VERB", "ROOT", "VB", "drink", "drink"]
],
[
[
["the", 32],
["wine", 33]
], "the wine", [33, "NOUN", "dobj", "NN", "wine", "wine"],
[31, "VERB", "conj", "VB", "drink", "drink"]
]
]
}]
}, {
"word_list": [{
"word_index": 0
}, {
"sent_num_": 0
}, {
"paragraph_index": 0
}, {
"token_idx": 0
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "So"
}, {
"Lemma": "so"
}, {
"Part_Of_Speech": "ADV"
}, {
"POS_tag": "RB"
}, {
"POS_dep": "advmod"
}, {
"tolken_head": "did"
}, {
"children": []
}, {
"word_index": 1
}, {
"sent_num_": 0
}, {
"paragraph_index": 0
}, {
"token_idx": 3
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Della"
}, {
"Lemma": "Della"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "did"
}, {
"children": []
}, {
"word_index": 2
}, {
"sent_num_": 0
}, {
"paragraph_index": 0
}, {
"token_idx": 9
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "did"
}, {
"Lemma": "do"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "did"
}, {
"children": ["So", "Della", "it", "."]
}, {
"word_index": 3
}, {
"sent_num_": 0
}, {
"paragraph_index": 0
}, {
"token_idx": 13
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "it"
}, {
"Lemma": "it"
}, {
"Part_Of_Speech": "PRON"
}, {
"POS_tag": "PRP"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "did"
}, {
"children": []
}, {
"word_index": 4
}, {
"sent_num_": 0
}, {
"paragraph_index": 0
}, {
"token_idx": 15
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "did"
}, {
"children": []
}, {
"word_index": 5
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 17
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Which"
}, {
"Lemma": "which"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "WDT"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "instigates"
}, {
"children": []
}, {
"word_index": 6
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 23
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "instigates"
}, {
"Lemma": "instigate"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBZ"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "instigates"
}, {
"children": ["Which", "reflection", "sniffles", "with", "."]
}, {
"word_index": 7
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 34
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "reflection"
}, {
"children": []
}, {
"word_index": 8
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 38
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "moral"
}, {
"Lemma": "moral"
}, {
"Part_Of_Speech": "ADJ"
}, {
"POS_tag": "JJ"
}, {
"POS_dep": "amod"
}, {
"tolken_head": "reflection"
}, {
"children": []
}, {
"word_index": 9
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 44
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "reflection"
}, {
"Lemma": "reflection"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "instigates"
}, {
"children": ["the", "moral", "made"]
}, {
"word_index": 10
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 55
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "that"
}, {
"Lemma": "that"
}, {
"Part_Of_Speech": "SCONJ"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "mark"
}, {
"tolken_head": "made"
}, {
"children": []
}, {
"word_index": 11
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 60
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "life"
}, {
"Lemma": "life"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "nsubjpass"
}, {
"tolken_head": "made"
}, {
"children": []
}, {
"word_index": 12
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 65
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "is"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBZ"
}, {
"POS_dep": "auxpass"
}, {
"tolken_head": "made"
}, {
"children": []
}, {
"word_index": 13
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 68
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "made"
}, {
"Lemma": "make"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBN"
}, {
"POS_dep": "acl"
}, {
"tolken_head": "reflection"
}, {
"children": ["that", "life", "is", "up", "of"]
}, {
"word_index": 14
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 73
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "up"
}, {
"Lemma": "up"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "RP"
}, {
"POS_dep": "prt"
}, {
"tolken_head": "made"
}, {
"children": []
}, {
"word_index": 15
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 76
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "of"
}, {
"Lemma": "of"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "prep"
}, {
"tolken_head": "made"
}, {
"children": ["sobs"]
}, {
"word_index": 16
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 79
}, {
"feelz": ["neg", "1.0"]
}, {
"Tolken": "sobs"
}, {
"Lemma": "sobs"
}, {
"Part_Of_Speech": "ADJ"
}, {
"POS_tag": "JJ"
}, {
"POS_dep": "pobj"
}, {
"tolken_head": "of"
}, {
"children": [","]
}, {
"word_index": 17
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 83
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": ","
}, {
"Lemma": ","
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": ","
}, {
"POS_dep": "punct"
}, {
"tolken_head": "sobs"
}, {
"children": []
}, {
"word_index": 18
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 85
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "sniffles"
}, {
"Lemma": "sniffle"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NNS"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "instigates"
}, {
"children": [",", "and", "smiles"]
}, {
"word_index": 19
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 93
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": ","
}, {
"Lemma": ","
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": ","
}, {
"POS_dep": "punct"
}, {
"tolken_head": "sniffles"
}, {
"children": []
}, {
"word_index": 20
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 95
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "and"
}, {
"Lemma": "and"
}, {
"Part_Of_Speech": "CCONJ"
}, {
"POS_tag": "CC"
}, {
"POS_dep": "cc"
}, {
"tolken_head": "sniffles"
}, {
"children": []
}, {
"word_index": 21
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 99
}, {
"feelz": ["pos", "1.0"]
}, {
"Tolken": "smiles"
}, {
"Lemma": "smile"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NNS"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "sniffles"
}, {
"children": [","]
}, {
"word_index": 22
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 105
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": ","
}, {
"Lemma": ","
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": ","
}, {
"POS_dep": "punct"
}, {
"tolken_head": "smiles"
}, {
"children": []
}, {
"word_index": 23
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 107
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "with"
}, {
"Lemma": "with"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "prep"
}, {
"tolken_head": "instigates"
}, {
"children": ["predominating"]
}, {
"word_index": 24
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 112
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "sniffles"
}, {
"Lemma": "sniffle"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NNS"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "predominating"
}, {
"children": []
}, {
"word_index": 25
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 121
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "predominating"
}, {
"Lemma": "predominate"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBG"
}, {
"POS_dep": "pcomp"
}, {
"tolken_head": "with"
}, {
"children": ["sniffles"]
}, {
"word_index": 26
}, {
"sent_num_": 1
}, {
"paragraph_index": 0
}, {
"token_idx": 134
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "instigates"
}, {
"children": []
}, {
"word_index": 27
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 0
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "A"
}, {
"Lemma": "a"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "sentence"
}, {
"children": []
}, {
"word_index": 28
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 2
}, {
"feelz": ["pos", "1.0"]
}, {
"Tolken": "harmless"
}, {
"Lemma": "harmless"
}, {
"Part_Of_Speech": "ADJ"
}, {
"POS_tag": "JJ"
}, {
"POS_dep": "amod"
}, {
"tolken_head": "sentence"
}, {
"children": []
}, {
"word_index": 29
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 11
}, {
"feelz": ["pos", "1.0"]
}, {
"Tolken": "sentence"
}, {
"Lemma": "sentence"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "sentence"
}, {
"children": ["A", "harmless", "of", "."]
}, {
"word_index": 30
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 20
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "of"
}, {
"Lemma": "of"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "prep"
}, {
"tolken_head": "sentence"
}, {
"children": ["consequence"]
}, {
"word_index": 31
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 23
}, {
"feelz": ["neg", "1.0"]
}, {
"Tolken": "no"
}, {
"Lemma": "no"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "consequence"
}, {
"children": []
}, {
"word_index": 32
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 26
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "consequence"
}, {
"Lemma": "consequence"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "pobj"
}, {
"tolken_head": "of"
}, {
"children": ["no"]
}, {
"word_index": 33
}, {
"sent_num_": 2
}, {
"paragraph_index": 1
}, {
"token_idx": 37
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "sentence"
}, {
"children": []
}, {
"word_index": 34
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 39
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "It"
}, {
"Lemma": "it"
}, {
"Part_Of_Speech": "PRON"
}, {
"POS_tag": "PRP"
}, {
"POS_dep": "nsubjpass"
}, {
"tolken_head": "written"
}, {
"children": []
}, {
"word_index": 35
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 42
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "has"
}, {
"Lemma": "have"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBZ"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "written"
}, {
"children": []
}, {
"word_index": 36
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 46
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "been"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBN"
}, {
"POS_dep": "auxpass"
}, {
"tolken_head": "written"
}, {
"children": []
}, {
"word_index": 37
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 51
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "written"
}, {
"Lemma": "write"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBN"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "written"
}, {
"children": ["It", "has", "been", ",", "let", "."]
}, {
"word_index": 38
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 58
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": ","
}, {
"Lemma": ","
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": ","
}, {
"POS_dep": "punct"
}, {
"tolken_head": "written"
}, {
"children": []
}, {
"word_index": 39
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 60
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "so"
}, {
"Lemma": "so"
}, {
"Part_Of_Speech": "ADV"
}, {
"POS_tag": "RB"
}, {
"POS_dep": "advmod"
}, {
"tolken_head": "let"
}, {
"children": []
}, {
"word_index": 40
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 63
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "let"
}, {
"Lemma": "let"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "written"
}, {
"children": ["so", "done"]
}, {
"word_index": 41
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 67
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "it"
}, {
"Lemma": "it"
}, {
"Part_Of_Speech": "PRON"
}, {
"POS_tag": "PRP"
}, {
"POS_dep": "nsubjpass"
}, {
"tolken_head": "done"
}, {
"children": []
}, {
"word_index": 42
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 70
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "be"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "auxpass"
}, {
"tolken_head": "done"
}, {
"children": []
}, {
"word_index": 43
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 73
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "done"
}, {
"Lemma": "do"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBN"
}, {
"POS_dep": "ccomp"
}, {
"tolken_head": "let"
}, {
"children": ["it", "be"]
}, {
"word_index": 44
}, {
"sent_num_": 3
}, {
"paragraph_index": 1
}, {
"token_idx": 77
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "written"
}, {
"children": []
}, {
"word_index": 45
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 0
}, {
"feelz": ["neg", "1.0"]
}, {
"Tolken": "No"
}, {
"Lemma": "no"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "one"
}, {
"children": []
}, {
"word_index": 46
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 3
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "one"
}, {
"Lemma": "one"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "knew"
}, {
"children": ["No"]
}, {
"word_index": 47
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 7
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "knew"
}, {
"Lemma": "know"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "knew"
}, {
"children": ["one", "why", ",", "cared", "."]
}, {
"word_index": 48
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 12
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "why"
}, {
"Lemma": "why"
}, {
"Part_Of_Speech": "ADV"
}, {
"POS_tag": "WRB"
}, {
"POS_dep": "advmod"
}, {
"tolken_head": "knew"
}, {
"children": []
}, {
"word_index": 49
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 15
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": ","
}, {
"Lemma": ","
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": ","
}, {
"POS_dep": "punct"
}, {
"tolken_head": "knew"
}, {
"children": []
}, {
"word_index": 50
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 17
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "because"
}, {
"Lemma": "because"
}, {
"Part_Of_Speech": "SCONJ"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "mark"
}, {
"tolken_head": "cared"
}, {
"children": []
}, {
"word_index": 51
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 25
}, {
"feelz": ["neg", "1.0"]
}, {
"Tolken": "no"
}, {
"Lemma": "no"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "one"
}, {
"children": []
}, {
"word_index": 52
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 28
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "one"
}, {
"Lemma": "one"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "cared"
}, {
"children": ["no"]
}, {
"word_index": 53
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 32
}, {
"feelz": ["pos", "1.0"]
}, {
"Tolken": "cared"
}, {
"Lemma": "care"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "advcl"
}, {
"tolken_head": "knew"
}, {
"children": ["because", "one"]
}, {
"word_index": 54
}, {
"sent_num_": 4
}, {
"paragraph_index": 2
}, {
"token_idx": 37
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "knew"
}, {
"children": []
}, {
"word_index": 55
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 39
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Bob"
}, {
"Lemma": "Bob"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "compound"
}, {
"tolken_head": "Dole"
}, {
"children": []
}, {
"word_index": 56
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 43
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Dole"
}, {
"Lemma": "Dole"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "seen"
}, {
"children": ["Bob", "and", "Clinton"]
}, {
"word_index": 57
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 48
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "and"
}, {
"Lemma": "and"
}, {
"Part_Of_Speech": "CCONJ"
}, {
"POS_tag": "CC"
}, {
"POS_dep": "cc"
}, {
"tolken_head": "Dole"
}, {
"children": []
}, {
"word_index": 58
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 52
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Bill"
}, {
"Lemma": "Bill"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "compound"
}, {
"tolken_head": "Clinton"
}, {
"children": []
}, {
"word_index": 59
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 57
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Clinton"
}, {
"Lemma": "Clinton"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "Dole"
}, {
"children": ["Bill"]
}, {
"word_index": 60
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 65
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "have"
}, {
"Lemma": "have"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBP"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "seen"
}, {
"children": []
}, {
"word_index": 61
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 70
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "seen"
}, {
"Lemma": "see"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBN"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "seen"
}, {
"children": ["Dole", "have", "Obama", "at", "."]
}, {
"word_index": 62
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 75
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Barack"
}, {
"Lemma": "Barack"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "compound"
}, {
"tolken_head": "Obama"
}, {
"children": []
}, {
"word_index": 63
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 82
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Obama"
}, {
"Lemma": "Obama"
}, {
"Part_Of_Speech": "PROPN"
}, {
"POS_tag": "NNP"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "seen"
}, {
"children": ["Barack"]
}, {
"word_index": 64
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 88
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "at"
}, {
"Lemma": "at"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "prep"
}, {
"tolken_head": "seen"
}, {
"children": ["mall"]
}, {
"word_index": 65
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 91
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "mall"
}, {
"children": []
}, {
"word_index": 66
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 95
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "mall"
}, {
"Lemma": "mall"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "pobj"
}, {
"tolken_head": "at"
}, {
"children": ["the"]
}, {
"word_index": 67
}, {
"sent_num_": 5
}, {
"paragraph_index": 2
}, {
"token_idx": 99
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "seen"
}, {
"children": []
}, {
"word_index": 68
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 101
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Everyone"
}, {
"Lemma": "everyone"
}, {
"Part_Of_Speech": "PRON"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "eating"
}, {
"children": []
}, {
"word_index": 69
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 110
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "was"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "eating"
}, {
"children": []
}, {
"word_index": 70
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 114
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "eating"
}, {
"Lemma": "eat"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBG"
}, {
"POS_dep": "ccomp"
}, {
"tolken_head": "was"
}, {
"children": ["Everyone", "was", "creams"]
}, {
"word_index": 71
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 121
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "ice"
}, {
"Lemma": "ice"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "compound"
}, {
"tolken_head": "creams"
}, {
"children": []
}, {
"word_index": 72
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 125
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "creams"
}, {
"Lemma": "cream"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NNS"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "eating"
}, {
"children": ["ice"]
}, {
"word_index": 73
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 131
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": ","
}, {
"Lemma": ","
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": ","
}, {
"POS_dep": "punct"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 74
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 133
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "one"
}, {
"Lemma": "one"
}, {
"Part_Of_Speech": "NUM"
}, {
"POS_tag": "CD"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 75
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 137
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "was"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "was"
}, {
"children": ["eating", ",", "one", "vanilla", "and", "were"]
}, {
"word_index": 76
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 141
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "vanilla"
}, {
"Lemma": "vanilla"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "attr"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 77
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 149
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "and"
}, {
"Lemma": "and"
}, {
"Part_Of_Speech": "CCONJ"
}, {
"POS_tag": "CC"
}, {
"POS_dep": "cc"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 78
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 153
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "rest"
}, {
"children": []
}, {
"word_index": 79
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 157
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "rest"
}, {
"Lemma": "rest"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "nsubj"
}, {
"tolken_head": "were"
}, {
"children": ["the"]
}, {
"word_index": 80
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 162
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "were"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "was"
}, {
"children": ["rest", "strawberry", "."]
}, {
"word_index": 81
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 167
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "strawberry"
}, {
"Lemma": "strawberry"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "attr"
}, {
"tolken_head": "were"
}, {
"children": []
}, {
"word_index": 82
}, {
"sent_num_": 6
}, {
"paragraph_index": 2
}, {
"token_idx": 177
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "were"
}, {
"children": []
}, {
"word_index": 83
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 0
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "There"
}, {
"Lemma": "there"
}, {
"Part_Of_Speech": "PRON"
}, {
"POS_tag": "EX"
}, {
"POS_dep": "expl"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 84
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 6
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "was"
}, {
"Lemma": "be"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VBD"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "was"
}, {
"children": ["There", "clearly", "nothing", "."]
}, {
"word_index": 85
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 10
}, {
"feelz": ["pos", "1.0"]
}, {
"Tolken": "clearly"
}, {
"Lemma": "clearly"
}, {
"Part_Of_Speech": "ADV"
}, {
"POS_tag": "RB"
}, {
"POS_dep": "advmod"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 86
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 18
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "nothing"
}, {
"Lemma": "nothing"
}, {
"Part_Of_Speech": "PRON"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "attr"
}, {
"tolken_head": "was"
}, {
"children": ["left"]
}, {
"word_index": 87
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 26
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "left"
}, {
"Lemma": "leave"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VBN"
}, {
"POS_dep": "acl"
}, {
"tolken_head": "nothing"
}, {
"children": ["do", "but", "flop"]
}, {
"word_index": 88
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 31
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "to"
}, {
"Lemma": "to"
}, {
"Part_Of_Speech": "PART"
}, {
"POS_tag": "TO"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "do"
}, {
"children": []
}, {
"word_index": 89
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 34
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "do"
}, {
"Lemma": "do"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "advcl"
}, {
"tolken_head": "left"
}, {
"children": ["to"]
}, {
"word_index": 90
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 37
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "but"
}, {
"Lemma": "but"
}, {
"Part_Of_Speech": "CCONJ"
}, {
"POS_tag": "CC"
}, {
"POS_dep": "cc"
}, {
"tolken_head": "left"
}, {
"children": []
}, {
"word_index": 91
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 41
}, {
"feelz": ["neg", "1.0"]
}, {
"Tolken": "flop"
}, {
"Lemma": "flop"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "left"
}, {
"children": ["down", "on"]
}, {
"word_index": 92
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 46
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "down"
}, {
"Lemma": "down"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "RP"
}, {
"POS_dep": "prt"
}, {
"tolken_head": "flop"
}, {
"children": []
}, {
"word_index": 93
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 51
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "on"
}, {
"Lemma": "on"
}, {
"Part_Of_Speech": "ADP"
}, {
"POS_tag": "IN"
}, {
"POS_dep": "prep"
}, {
"tolken_head": "flop"
}, {
"children": ["couch"]
}, {
"word_index": 94
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 54
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "couch"
}, {
"children": []
}, {
"word_index": 95
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 58
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "shabby"
}, {
"Lemma": "shabby"
}, {
"Part_Of_Speech": "ADJ"
}, {
"POS_tag": "JJ"
}, {
"POS_dep": "amod"
}, {
"tolken_head": "couch"
}, {
"children": []
}, {
"word_index": 96
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 65
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "little"
}, {
"Lemma": "little"
}, {
"Part_Of_Speech": "ADJ"
}, {
"POS_tag": "JJ"
}, {
"POS_dep": "amod"
}, {
"tolken_head": "couch"
}, {
"children": []
}, {
"word_index": 97
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 72
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "couch"
}, {
"Lemma": "couch"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "pobj"
}, {
"tolken_head": "on"
}, {
"children": ["the", "shabby", "little", "and", "howl"]
}, {
"word_index": 98
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 78
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "and"
}, {
"Lemma": "and"
}, {
"Part_Of_Speech": "CCONJ"
}, {
"POS_tag": "CC"
}, {
"POS_dep": "cc"
}, {
"tolken_head": "couch"
}, {
"children": []
}, {
"word_index": 99
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 82
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "howl"
}, {
"Lemma": "howl"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "couch"
}, {
"children": []
}, {
"word_index": 100
}, {
"sent_num_": 7
}, {
"paragraph_index": 3
}, {
"token_idx": 86
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "was"
}, {
"children": []
}, {
"word_index": 101
}, {
"sent_num_": 8
}, {
"paragraph_index": 3
}, {
"token_idx": 88
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Do"
}, {
"Lemma": "do"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 102
}, {
"sent_num_": 8
}, {
"paragraph_index": 3
}, {
"token_idx": 90
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "n't"
}, {
"Lemma": "n't"
}, {
"Part_Of_Speech": "PART"
}, {
"POS_tag": "RB"
}, {
"POS_dep": "neg"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 103
}, {
"sent_num_": 8
}, {
"paragraph_index": 3
}, {
"token_idx": 94
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "drink"
}, {
"Lemma": "drink"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "drink"
}, {
"children": ["Do", "n't", "water", "."]
}, {
"word_index": 104
}, {
"sent_num_": 8
}, {
"paragraph_index": 3
}, {
"token_idx": 100
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "water"
}, {
"children": []
}, {
"word_index": 105
}, {
"sent_num_": 8
}, {
"paragraph_index": 3
}, {
"token_idx": 104
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "water"
}, {
"Lemma": "water"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "drink"
}, {
"children": ["the"]
}, {
"word_index": 106
}, {
"sent_num_": 8
}, {
"paragraph_index": 3
}, {
"token_idx": 109
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 107
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 111
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "Do"
}, {
"Lemma": "do"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 108
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 113
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "n't"
}, {
"Lemma": "n't"
}, {
"Part_Of_Speech": "PART"
}, {
"POS_tag": "RB"
}, {
"POS_dep": "neg"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 109
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 117
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "drink"
}, {
"Lemma": "drink"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "ROOT"
}, {
"tolken_head": "drink"
}, {
"children": ["Do", "n't", "beer", "but", "drink", "."]
}, {
"word_index": 110
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 123
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "beer"
}, {
"children": []
}, {
"word_index": 111
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 127
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "beer"
}, {
"Lemma": "beer"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "drink"
}, {
"children": ["the"]
}, {
"word_index": 112
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 132
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "but"
}, {
"Lemma": "but"
}, {
"Part_Of_Speech": "CCONJ"
}, {
"POS_tag": "CC"
}, {
"POS_dep": "cc"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 113
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 136
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "do"
}, {
"Lemma": "do"
}, {
"Part_Of_Speech": "AUX"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "aux"
}, {
"tolken_head": "drink"
}, {
"children": []
}, {
"word_index": 114
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 139
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "drink"
}, {
"Lemma": "drink"
}, {
"Part_Of_Speech": "VERB"
}, {
"POS_tag": "VB"
}, {
"POS_dep": "conj"
}, {
"tolken_head": "drink"
}, {
"children": ["do", "wine"]
}, {
"word_index": 115
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 145
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "the"
}, {
"Lemma": "the"
}, {
"Part_Of_Speech": "DET"
}, {
"POS_tag": "DT"
}, {
"POS_dep": "det"
}, {
"tolken_head": "wine"
}, {
"children": []
}, {
"word_index": 116
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 149
}, {
"feelz": ["neu", "1.0"]
}, {
"Tolken": "wine"
}, {
"Lemma": "wine"
}, {
"Part_Of_Speech": "NOUN"
}, {
"POS_tag": "NN"
}, {
"POS_dep": "dobj"
}, {
"tolken_head": "drink"
}, {
"children": ["the"]
}, {
"word_index": 117
}, {
"sent_num_": 9
}, {
"paragraph_index": 3
}, {
"token_idx": 153
}, {
"feelz": ["pos", "0.0"]
}, {
"Tolken": "."
}, {
"Lemma": "."
}, {
"Part_Of_Speech": "PUNCT"
}, {
"POS_tag": "."
}, {
"POS_dep": "punct"
}, {
"tolken_head": "drink"
}, {
"children": []
}]
}]
}
thanks for reading!
Last edited by a moderator: