%%html
<script>
function code_toggle() {
if (code_shown){
$('div.input').hide('500');
$('#toggleButton').val('Show Code')
} else {
$('div.input').show('500');
$('#toggleButton').val('Hide Code')
}
code_shown = !code_shown
}
$( document ).ready(function(){
code_shown=false;
$('div.input').hide()
});
</script>
<form action="javascript:code_toggle()"><input type="submit" id="toggleButton" value="Show Code"></form>
%%capture
%load_ext autoreload
%autoreload 2
import sys
sys.path.append("..")
import statnlpbook.util as util
import statnlpbook.parsing as parsing
util.execute_notebook('parsing.ipynb')
%%HTML
<style>
td,th {
font-size: x-large;
text-align: left;
}
</style>
Say you find positive textual mentions in this form:
Dechra Pharmaceuticals has made its second acquisition after purchasing Genitrix.
Trinity Mirror plc is the largest British newspaper after purchasing rival Local World.
Can you find a pattern?
How about this sentence
Kraft is gearing up for a roll-out of its Milka brand after purchasing Cadbury Dairy Milk.
Wouldn't it be great if we knew that
Check out enju parser
Parsing is is the process of finding these trees:
How is this done?
from the Greek syntaxis (arrangement):
Kraft is gearing up for a roll-out of its Milka brand after purchasing Cadbury Dairy Milk.
There are more complex (sub) categories of verbs (and other types of words)
Formalise syntax by describing the hierarchical structure of sentences
A Context Free Grammar (CFG) is a 4-tuple $G=(N,\Sigma,R,S)$ where
Simple example grammar:
cfg = CFG.from_rules([('S', ['NP_p','VP_p']),('S',['NP_s','VP_s']),
('NP_p', ['Matko', 'raps']),
('VP_p', ['are', 'ADJ']),
('NP_s', ['Matko']),
('VP_s', ['raps', 'in', 'StatNLP']),
('ADJ', ['silly'])
])
cfg
S | NP_p VP_p |
S | NP_s VP_s |
NP_p | Matko raps |
VP_p | are ADJ |
NP_s | Matko |
VP_s | raps in StatNLP |
ADJ | silly |
The structure of a sentence with respect to a grammar can be described by its derivation (if it exists)
Sequence of sequences $s_1 \ldots s_n$ such that
util.Table(generate_deriv(cfg, [cfg.s]))
S | |||
NP_p | VP_p | ||
Matko | raps | VP_p | |
Matko | raps | are | ADJ |
Matko | raps | are | silly |
Represent derivations as trees
tree = ('S', [('NP_p',['Matko','raps']), ('VP_p',['are','silly'])])
parsing.render_tree(tree)
parsing.render_tree(generate_tree(cfg,'S'))
There are a couple of approaches to find a legal parse tree given a sentence and grammar:
Incrementally build up a tree left-to-right, and maintain ...
a buffer of remaining words
parsing.render_transitions(transitions[0:1])
Matko raps are silly | Init |
a stack of trees build so far
parsing.render_transitions(transitions[13:14])
silly | Shift |
Perform three types of actions:
Put first word from buffer to stack (as singleton tree)
parsing.render_transitions(transitions[0:2])
Matko raps are silly | Init | |
raps are silly | Shift |
For rule $X \rightarrow Y \: Z$ and stack $Y \: Z$, create new tree headed with $X$
parsing.render_transitions(transitions[11:13])
are silly | Shift | |
are silly | Reduce |
If no rule can be found and the buffer is empty, go back to last decision point
parsing.render_transitions(transitions[10:13])
raps are silly | Backtrack | |
are silly | Shift | |
are silly | Reduce |
sentence = ['Matko', 'raps', 'are', 'silly']
transitions = bottom_up_parse(cfg, sentence)
cfg
S | NP_p VP_p |
S | NP_s VP_s |
NP_p | Matko raps |
VP_p | are ADJ |
NP_s | Matko |
VP_s | raps in StatNLP |
ADJ | silly |
parsing.render_transitions(transitions[10:14])
raps are silly | Backtrack | |
are silly | Shift | |
are silly | Reduce | |
silly | Shift |
parsing.render_forest(transitions[-1][0].stack)
Bottom-up parser repeats the same work several times
parsing.render_transitions(transitions[7:8])
Reduce |
parsing.render_transitions(transitions[10:13])
raps are silly | Backtrack | |
are silly | Shift | |
are silly | Reduce |
parsing.render_transitions(transitions[-2:-1])
Reduce |
Fortunately we can cache these computations
Algorithm for caching requires Chomsky Normal Form
Rules have form:
We can convert every CFG into an equivalent CFG in CNF
Replace left rules by right rules:
$S \rightarrow NP \: VP \: PP$
becomes $S \rightarrow S' \: PP$ and $S' \rightarrow NP \: VP$
$VP \rightarrow \text{are} \: ADJ$
becomes $VP \rightarrow X \: ADJ$ and $X \rightarrow \text{are}$
cnf_cfg = to_cnf(cfg)
cnf_cfg
S | NP_p VP_p |
S | NP_s VP_s |
NP_p_0 | Matko |
NP_p_1 | raps |
NP_p | NP_p_0 NP_p_1 |
VP_p_2 | are |
VP_p | VP_p_2 ADJ |
NP_s | Matko |
VP_s_4 | raps |
VP_s | VP_s_4 VP_s_3 |
VP_s_3_5 | in |
VP_s_3_6 | StatNLP |
VP_s_3 | VP_s_3_5 VP_s_3_6 |
ADJ | silly |
Incrementally build all parse trees for spans of increasing length
Like the one for "are silly" and "Matko Raps":
parsing.render_transitions(transitions[16:17])
Reduce |
Populate chart with non-terminal $l$ for span $(i,j)$
if $j=i$
if $j>i$
Best done in a chart to store
chart = parsing.Chart(sentence)
chart.append_label(0,0,'NP_s')
chart.append_label(0,0,'NP_p_0')
chart.append_label(1,1,'VP_s_6')
chart.append_label(1,1,'NP_p_1')
chart.append_label(0,1,'NP_p_2', [(0,0,'NP_p_0'),(1,1,'NP_p_1')])
chart.mark(0, 1, 'NP_p_2')
chart.mark_target(0,1)
chart
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_s, NP_p_0 | NP_p_2 | ||
1: raps | VP_s_6, NP_p_1 | |||
2: are | ||||
3: silly |
cnf_cfg
S | NP_p VP_p |
S | NP_s VP_s |
NP_p_0 | Matko |
NP_p_1 | raps |
NP_p | NP_p_0 NP_p_1 |
VP_p_2 | are |
VP_p | VP_p_2 ADJ |
NP_s | Matko |
VP_s_4 | raps |
VP_s | VP_s_4 VP_s_3 |
VP_s_3_5 | in |
VP_s_3_6 | StatNLP |
VP_s_3 | VP_s_3_5 VP_s_3_6 |
ADJ | silly |
trace = cyk(cnf_cfg, sentence)
util.Carousel(trace)
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | ||||
1: raps | ||||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | ||||
1: raps | ||||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0 | |||
1: raps | ||||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | ||||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | ||||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1 | |||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | ||||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | |||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | S | |
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | S | |
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | S | |
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
The chart can be traversed backwards to get all trees
util.Carousel([trace[i] for i in [35,33,22,13]])
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | S | |
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | S | |
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | VP_p | ||
3: silly | ADJ |
0: Matko | 1: raps | 2: are | 3: silly | |
0: Matko | NP_p_0, NP_s | NP_p | ||
1: raps | NP_p_1, VP_s_4 | |||
2: are | VP_p_2 | |||
3: silly | ADJ |
parse_result = trace[-1].derive_trees()[0]
parsing.render_tree(parse_result)
Collapse CNF non-terminals
parsing.render_tree(parsing.filter_non_terminals(parse_result, cfg.n))
For real world grammars many phrases have several legal parse trees
Consider the following grammar and sentence
amb_cfg = CFG.from_rules([
('S', ['Subj','VP']),
('Subj', ['He']),
('Verb', ['shot']),
('VP', ['Verb', 'Obj']), ('VP', ['Verb', 'Obj', 'PP']),
('PP', ['in','his','pyjamas']),
('Obj', ['the','elephant']), ('Obj', ['the','elephant','PP'])
])
amb_cnf_cfg = to_cnf(amb_cfg)
amb_sentence = ["He", "shot", "the", "elephant", "in", "his", "pyjamas"]
amb_cfg
S | Subj VP |
Subj | He |
Verb | shot |
VP | Verb Obj |
VP | Verb Obj PP |
PP | in his pyjamas |
Obj | the elephant |
Obj | the elephant PP |
" ".join(amb_sentence)
'He shot the elephant in his pyjamas'
amb_trace = cyk(amb_cnf_cfg, amb_sentence)
amb_parse_results = amb_trace[-1].derive_trees()
def ambiguous_tree(num):
return parsing.render_tree(parsing.filter_non_terminals(amb_parse_results[num],amb_cfg.n)) # try results[1]
ambiguous_tree(1) # try tree 1
prepositional phrase attachment ambiguity: "in his pyjamas" could be
Both readings are grammatical, but one is more probable
Probabilistic Context Free Grammars (PFCGs) are Context Free Grammars in which rules have probabilities
A PCFG defines probability for parse tree $\mathbf{t}$ containing the rules $\alpha_1 \rightarrow \beta_1, \ldots, \alpha_n \rightarrow \beta_n$: $$ \newcommand{parse}{\mathbf{t}} p_{\param}(\parse) = \prod_i^n \param(\alpha_i \rightarrow \beta_i) $$
Example PCFG:
pcfg = PCFG.from_rules([
('S', 1.0, ['Subj','VP']),
('Subj', 1.0, ['He']),
('Verb', 1.0, ['shot']),
('VP', 0.3, ['Verb', 'Obj']), ('VP', 0.7, ['Verb', 'Obj', 'PP']),
('PP', 1.0, ['in','his','pyjamas']),
('Obj', 0.5, ['the','elephant']), ('Obj', 0.5, ['the','elephant','PP'])
])
pcfg
S | 1.0 | Subj VP |
Subj | 1.0 | He |
Verb | 1.0 | shot |
VP | 0.3 | Verb Obj |
VP | 0.7 | Verb Obj PP |
PP | 1.0 | in his pyjamas |
Obj | 0.5 | the elephant |
Obj | 0.5 | the elephant PP |
For given sentence $\x$, let $\Ys(\x,G)$ be all trees $\mathbf{t}$ with $\x$ as terminals:
$$ \argmax_{\mathbf{t} \in \Ys(\x,G)} \prob_\params(\mathbf{t}) $$We can use a variant of the CYK algorithm to solve the prediction problem
Populate chart with non-terminal $l$ for span $(i,j)$ and score $s$
if $j=i$
if $j>i$
cnf_pcfg
S | 1.0 | Subj VP |
Subj | 1.0 | He |
Verb | 1.0 | shot |
VP | 0.3 | Verb Obj |
VP | 0.7 | Verb VP_0 |
VP_0 | 1.0 | Obj PP |
PP_2 | 1.0 | in |
PP | 1.0 | PP_2 PP_1 |
PP_1_3 | 1.0 | his |
PP_1_4 | 1.0 | pyjamas |
PP_1 | 1.0 | PP_1_3 PP_1_4 |
Obj_5 | 1.0 | the |
Obj_6 | 1.0 | elephant |
Obj | 0.5 | Obj_5 Obj_6 |
Obj_8 | 1.0 | the |
Obj | 0.5 | Obj_8 Obj_7 |
Obj_7_9 | 1.0 | elephant |
Obj_7 | 1.0 | Obj_7_9 PP |
util.Carousel(pcyk_trace)
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | |||||||
1: shot | |||||||
2: the | |||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | |||||||
1: shot | |||||||
2: the | |||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | |||||||
2: the | |||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | |||||||
2: the | |||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | |||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | |||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00 | ||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | |||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00 | ||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | |||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | |||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | ||||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | ||||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | ||||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | ||||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | ||||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | ||||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | |||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | |||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.90 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.90 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | |||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
0: He | 1: shot | 2: the | 3: elephant | 4: in | 5: his | 6: pyjamas | |
0: He | Subj: 0.00 | S: -1.90 | S: -1.05 | ||||
1: shot | Verb: 0.00 | VP: -1.90 | VP: -1.05 | ||||
2: the | Obj_5: 0.00, Obj_8: 0.00 | Obj: -0.69 | Obj: -0.69, VP_0: -0.69 | ||||
3: elephant | Obj_6: 0.00, Obj_7_9: 0.00 | Obj_7: 0.00 | |||||
4: in | PP_2: 0.00 | PP: 0.00 | |||||
5: his | PP_1_3: 0.00 | PP_1: 0.00 | |||||
6: pyjamas | PP_1_4: 0.00 |
Runtime with respect to sentence length?
Resolve parse by going backwards ...
pcyk_trace = pcyk(cnf_pcfg, amb_sentence)
parsing.render_tree(parsing.filter_non_terminals(pcyk_trace[-1].derive_trees()[0],pcfg.cfg.n))
Learning for PCFGs :
Need corpus of parse trees $\train=(\parse_1, \ldots, \parse_n)$
Annotation expensive and need experts, major bottleneck in parsing research.
To learn the parameters $\params$ of the model we can again use the maximum-likelihood criterium:
$$ \params^* = \argmax_\params \sum_{\parse \in \train} \log \prob_\params(\parse) $$Amounts to counting
$$ \param(\alpha \rightarrow \beta) = \frac{\counts{\train}{\alpha \rightarrow \beta}}{\counts{\train}{\alpha}} $$Details omitted here, as you have seen this before
In practice
In practice