Automatic
Mapping Among Lexico-Grammatical Annotation Models (AMALGAM)
The differences are much greater between parsing schemes for full syntactic structure annotation. The following are parses conformant to the parsing schemes of several large-scale English TREEBANKS or CORPORA of parsed English text:
==> EAGLES <== [S[VP select [NP the text [CL[NP you NP][VP want [VP to protect VP]VP]CL]NP]VP] . S] ==> ECG-BoE <== "
There is even greater diversity in the parsing schemes used in rival NLP parsing programs. The example sentence was actually selected from a test-set used at the Industrial Parsing of Software Manuals workshop (University of Limerick, 1995); it is one of the shortest test sentences, and hence ought to be one of the most grammatically straightforward and uncontrovertial (!)
The following are outputs of several rival NLP parsing programs, given the example sentence to parse:
==> alice <==
Fragment No. 1
>From 0 To 5
(SENT (SENT-MOD (UNK-CAT "Select") (NP (DET "the")
(NOUN "text")))
(SENT (VP-ACT (NP "you") (V-TR "want")) (NP NULL-PHON)))
Fragment No. 2
>From 5 To 7
(SENT-MOD (UNK-CAT "to") (NP "protect"))
==> despar <==
VB select 1 --> 8 -
DT the 2 --> 3 [
NN text 3 --> 1 + OBJ
PP you 4 --> 5 " SUB
VBP want 5 --> 3 ]
TO to 6 --> 7 -
VB protect 7 --> 5 -
. . 8 --> 0 -
==> principar_constituency <==
(S
(VP (Vbar (V (V_NP
(V_NP Select)
(NP
(Det the)
(Nbar
(N text)
(CP
Op[1]
(Cbar (IP
(NP (Nbar (N you)))
(Ibar (VP (Vbar (V (V_CP
(V_CP want)
(CP (Cbar (IP
PRO
(Ibar
(Aux to)
(VP (Vbar (V (V_NP
(V_NP protect)
t[1]))))))))))))))))))))))
.)
==> principar_dependency <==
(
(Select ~ V_NP *)
(the ~ Det < text spec)
(text ~ N > Select comp1)
(you ~ N < want subj)
(want ~ V_CP > text rel)
(to ~ I > want comp1)
(protect ~ V_NP > to pred)
(. )
)
==> ranlp <==
(VP/NP select
(N2+/DET1a the
(N2-
(N1/INFMOD
(N1/RELMOD1 (N1/N text)
(S/THATLESSREL (S1a (N2+/PRO you) (VP/NP want (TRACE1 E)))))
(VP/TO to (VP/NP protect (TRACE1 E)))))))
==> sextant <==
134 ------------------
Select the text you want to protect .
134 VP 101 Select select INF 0 0
134 NP 2 the the DET 1 1 2 (text) DET
134 NP* 2 text text NOUN 2 1 0 (select) DOBJ
134 NP* 3 you you PRON 3 0
134 VP 102 want want INF 4 0
134 VP 102 to to TO 5 0
134 VP 102 protect protect INF 6 1 3 (you) SUBJ
134 -- 0 . . . 7 0
==> Carroll robust probabilistic LR parser <==
(S Select_VV0
(NP the_AT text_NN1 (S you_PPY want_VV0 (VP to_TO protect_VV0))))
AMALGAM HOMEPAGE | PREVIOUS PAGE | UP A LEVEL | NEXT PAGE
This site developed and maintained by Eric Atwell (eric@comp.leeds.ac.uk)