|
Project Information
Links
|
This project provides several NLP tools such as a dependency parser, a semantic role labeler, a penn-to-dependency converter, a prop-to-dependency converter, and a morphological analyzer. All tools are written in Java and developed by the Computational Language and EducAtion Research (CLEAR) group at the University of Colorado at Boulder. Important NoticeThe ClearParser project is going to move to a bigger project called ClearNLP during the Q2 or Q3 of 2012. Here are expected changes in the ClearNLP project.
Please send an email to choijd<at>colorado<dot>edu if you wish to be notified for the ClearNLP project. Installation
CLEAR_PATH="path of the [clearparser] directory" export CLASSPATH=$CLEAR_PATH/lib/opennlp-maxent-3.0.1-incubating.jar:$CLEAR_PATH/lib/opennlp-tools-1.5.1.jar:$CLEAR_PATH/lib/args4j-2.0.12.jar:$CLEAR_PATH/lib/commons-compress-1.1.jar:$CLEAR_PATH/lib/hppc-0.4.0.jar:$CLEAR_PATH/lib/clearparser-version.jar:. Clear Dependency ParserClear dependency parser uses two transition-based dependency parsing algorithms, shift-eager algorithm (Choi & Nicolov, 2009) and shift-pop algorithm (default algorithm; Choi & Palmer, 2011a). These algorithms show near state-of-the-art performance in both speed and accuracy. Clear Semantic Role LabelerClear semantic role labeler is a dependency-based SRL system. The labeler uses a transition-based SRL algorithm and shows near state-of-the-art performance in accuracy (Choi & Palmer, 2011b). Clear Penn-to-Dependency ConverterClear penn-to-dependency converter takes Penn Treebank style phrase structure trees and generates CoNLL style dependency trees. The converter is up-to-date for the new Treebank guidelines (as in 2011), and shows robust results across different corpora (Choi & Palmer 2010). Clear Prop-to-Dependency ConverterClear prop-to-dependency converter takes PropBank instances and generates CoNLL style dependency trees with semantic roles. The converter is up-to-date for the new PropBank guidelines (as in 2011). Clear Morphological AnalyzerClear morphological analyzer takes a pair of word-form and its part-of-speech tag, and generates the lemma of the word-form. It is a dictionary-based analyzer developed on top of the WordNet morphy. References
|