Revision: 19763
http://sourceforge.net/p/gate/code/19763
Author: ian_roberts
Date: 2016-11-21 17:14:22 +0000 (Mon, 21 Nov 2016)
Log Message:
-----------
Minipar is no more
Modified Paths:
--------------
userguide/trunk/parsers.tex
Modified: userguide/trunk/parsers.tex
===================================================================
--- userguide/trunk/parsers.tex 2016-11-21 17:12:13 UTC (rev 19762)
+++ userguide/trunk/parsers.tex 2016-11-21 17:14:22 UTC (rev 19763)
@@ -6,128 +6,128 @@
\nnormalsize
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\sect[sec:parsers:minipar]{MiniPar Parser}
+%\sect[sec:parsers:minipar]{MiniPar Parser}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-MiniPar is a shallow parser. In its shipped version, it takes one sentence as
an
-input and determines the dependency relationships between the words of a
-sentence. It parses the sentence and brings out the information such as:
-\begin{itemize}
-\item the lemma of the word;
-\item the part of speech of the word;
-\item the head modified by this word;
-\item name of the dependency relationship between this word and the head;
-\item the lemma of the head.
-\end{itemize}
-
-In the version of MiniPar integrated in GATE (`Parser\_Minipar' plugin), it
-generates annotations of type `DepTreeNode' and the annotations of type
-`[relation]' that exists between the head and the child node. The document is
-required to have annotations of type `Sentence', where each annotation consists
-of a string of the sentence.
-
-Minipar takes one sentence at a time as an input and generates the tokens of
-type `DepTreeNode'. Later it assigns relation between these tokens. Each
-DepTreeNode consists of feature called `word': this is the actual text of the
-word.
-
-For each and every annotation of type `[Rel]', where `Rel' is obj, pred etc.
-This is the name of the dependency relationship between the child word and the
-head word (see Section \ref{sec:parsers:minipar:GR}). Every `[Rel]' annotation
is assigned four
-features:
-
-\begin{itemize}
-\item \textbf{child\_word}: this is the text of the child annotation;
-\item \textbf{child\_id}: IDs of the annotations which modify the current word
(if any).
-\item \textbf{head\_word}: this is the text of the head annotation;
-\item \textbf{head\_id}: ID of the annotation modified by the child word (if
any);
-\end{itemize}
-
-\begin{figure}[t]
- \begin{center}
- \includegraphics[width=\textwidth]{Minipar.png}
- \caption{a MiniPar annotated document}
- \label{fig:minipar}
- \end{center}
-\end{figure}
-
-Figure \ref{fig:minipar} shows a MiniPar annotated document in GATE Developer.
-
-\subsect{Platform Supported}
-
-MiniPar in GATE is supported for the Linux and Windows operating systems.
Trying
-to instantiate this PR on any other OS will generate the
-ResourceInstantiationException.
-
-\subsect{Resources}
-
-MiniPar in GATE is shipped with four basic resources:
-\begin{itemize}
-\item
-\textbf{MiniparWrapper.jar}: this is a JAVA Wrapper for MiniPar;
-\item
-\textbf{creole.XML}: this defines the required parameters for MiniPar Wrapper;
-\item
-\textbf{minipar.linux}: this is a modified version of pdemo.cpp.
-\item
-\textbf{minipar-windows.exe} : this is a modified version of pdemo.cpp
compiled to work on windows.
-\end{itemize}
-
-\subsect{Parameters}
-
-The MiniPar wrapper takes six parameters:
-\begin{itemize}
-\item
-\textbf{annotationTypeName}: new annotations are created with this type,
default is "DepTreeNode";
-\item
-\textbf{annotationInputSetName}: annotations of Sentence type are provided as
an input to MiniPar and are taken from the given annotationSet;
-\item
-\textbf{annotationOutputSetName}: All annotations created by Minipar Wrapper
are stored under the given annotationOutputSet;
-\item
-\textbf{document}: the GATE document to process;
-\item
-\textbf{miniparBinary}: location of the MiniPar Binary file (i.e. either
minipar.linux or minipar-windows.exe. These files are available under
gate/plugins/minipar/ directory);
-\item
-\textbf{miniparDataDir}: location of the `data' directory under the
installation directory of MINIPAR. default is "\%MINIPAR\_HOME\%/data".
-\end{itemize}
-
-\subsect{Prerequisites}
-
-The MiniPar wrapper requires the MiniPar library to be available on the
-underlying Linux/Windows machine. It can be downloaded from the
-\htlink{http://www.cs.ualberta.ca/~lindek/minipar.htm}{MiniPar homepage}.
-
-\subsect[sec:parsers:minipar:GR]{Grammatical Relationships}
-\begin{small}\begin{verbatim}
-appo "ACME president, --appo-> P.W. Buckman"
-aux "should <-aux-- resign"
-be "is <-be-- sleeping"
-c "that <-c-- John loves Mary"
-comp1 first complement
-det "the <-det `-- hat"
-gen "Jane's <-gen-- uncle"
-i the relationship between a C clause and its I clause
-inv-aux inverted auxiliary: "Will <-inv-aux-- you stop it?"
-inv-be inverted be: "Is <-inv-be-- she sleeping"
-inv-have inverted have: "Have <-inv-have-- you slept"
-mod the relationship between a word and its adjunct modifier
-pnmod post nominal modifier
-p-spec specifier of prepositional phrases
-pcomp-c clausal complement of prepositions
-pcomp-n nominal complement of prepositions
-post post determiner
-pre pre determiner
-pred predicate of a clause
-rel relative clause
-vrel passive verb modifier of nouns
-wha, whn, whp: wh-elements at C-spec positions
-obj object of verbs
-obj2 second object of ditransitive verbs
-subj subject of verbs
-s surface subjec
-\end{verbatim}\end{small}
-
-
+%
+% MiniPar is a shallow parser. In its shipped version, it takes one sentence
as an
+% input and determines the dependency relationships between the words of a
+% sentence. It parses the sentence and brings out the information such as:
+% \begin{itemize}
+% \item the lemma of the word;
+% \item the part of speech of the word;
+% \item the head modified by this word;
+% \item name of the dependency relationship between this word and the head;
+% \item the lemma of the head.
+% \end{itemize}
+%
+% In the version of MiniPar integrated in GATE (`Parser\_Minipar' plugin), it
+% generates annotations of type `DepTreeNode' and the annotations of type
+% `[relation]' that exists between the head and the child node. The document is
+% required to have annotations of type `Sentence', where each annotation
consists
+% of a string of the sentence.
+%
+% Minipar takes one sentence at a time as an input and generates the tokens of
+% type `DepTreeNode'. Later it assigns relation between these tokens. Each
+% DepTreeNode consists of feature called `word': this is the actual text of the
+% word.
+%
+% For each and every annotation of type `[Rel]', where `Rel' is obj, pred etc.
+% This is the name of the dependency relationship between the child word and
the
+% head word (see Section \ref{sec:parsers:minipar:GR}). Every `[Rel]'
annotation is assigned four
+% features:
+%
+% \begin{itemize}
+% \item \textbf{child\_word}: this is the text of the child annotation;
+% \item \textbf{child\_id}: IDs of the annotations which modify the current
word (if any).
+% \item \textbf{head\_word}: this is the text of the head annotation;
+% \item \textbf{head\_id}: ID of the annotation modified by the child word (if
any);
+% \end{itemize}
+%
+% \begin{figure}[t]
+% \begin{center}
+% \includegraphics[width=\textwidth]{Minipar.png}
+% \caption{a MiniPar annotated document}
+% \label{fig:minipar}
+% \end{center}
+% \end{figure}
+%
+% Figure \ref{fig:minipar} shows a MiniPar annotated document in GATE
Developer.
+%
+% \subsect{Platform Supported}
+%
+% MiniPar in GATE is supported for the Linux and Windows operating systems.
Trying
+% to instantiate this PR on any other OS will generate the
+% ResourceInstantiationException.
+%
+% \subsect{Resources}
+%
+% MiniPar in GATE is shipped with four basic resources:
+% \begin{itemize}
+% \item
+% \textbf{MiniparWrapper.jar}: this is a JAVA Wrapper for MiniPar;
+% \item
+% \textbf{creole.XML}: this defines the required parameters for MiniPar
Wrapper;
+% \item
+% \textbf{minipar.linux}: this is a modified version of pdemo.cpp.
+% \item
+% \textbf{minipar-windows.exe} : this is a modified version of pdemo.cpp
compiled to work on windows.
+% \end{itemize}
+%
+% \subsect{Parameters}
+%
+% The MiniPar wrapper takes six parameters:
+% \begin{itemize}
+% \item
+% \textbf{annotationTypeName}: new annotations are created with this type,
default is "DepTreeNode";
+% \item
+% \textbf{annotationInputSetName}: annotations of Sentence type are provided
as an input to MiniPar and are taken from the given annotationSet;
+% \item
+% \textbf{annotationOutputSetName}: All annotations created by Minipar Wrapper
are stored under the given annotationOutputSet;
+% \item
+% \textbf{document}: the GATE document to process;
+% \item
+% \textbf{miniparBinary}: location of the MiniPar Binary file (i.e. either
minipar.linux or minipar-windows.exe. These files are available under
gate/plugins/minipar/ directory);
+% \item
+% \textbf{miniparDataDir}: location of the `data' directory under the
installation directory of MINIPAR. default is "\%MINIPAR\_HOME\%/data".
+% \end{itemize}
+%
+% \subsect{Prerequisites}
+%
+% The MiniPar wrapper requires the MiniPar library to be available on the
+% underlying Linux/Windows machine. It can be downloaded from the
+% \htlink{http://www.cs.ualberta.ca/~lindek/minipar.htm}{MiniPar homepage}.
+%
+% \subsect[sec:parsers:minipar:GR]{Grammatical Relationships}
+% \begin{small}\begin{verbatim}
+% appo "ACME president, --appo-> P.W. Buckman"
+% aux "should <-aux-- resign"
+% be "is <-be-- sleeping"
+% c "that <-c-- John loves Mary"
+% comp1 first complement
+% det "the <-det `-- hat"
+% gen "Jane's <-gen-- uncle"
+% i the relationship between a C clause and its I clause
+% inv-aux inverted auxiliary: "Will <-inv-aux-- you stop it?"
+% inv-be inverted be: "Is <-inv-be-- she sleeping"
+% inv-have inverted have: "Have <-inv-have-- you slept"
+% mod the relationship between a word and its adjunct modifier
+% pnmod post nominal modifier
+% p-spec specifier of prepositional phrases
+% pcomp-c clausal complement of prepositions
+% pcomp-n nominal complement of prepositions
+% post post determiner
+% pre pre determiner
+% pred predicate of a clause
+% rel relative clause
+% vrel passive verb modifier of nouns
+% wha, whn, whp: wh-elements at C-spec positions
+% obj object of verbs
+% obj2 second object of ditransitive verbs
+% subj subject of verbs
+% s surface subjec
+% \end{verbatim}\end{small}
+%
+%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\sect[sec:parsers:rasp]{RASP Parser}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs