This is an implementation of the method described in
Danqi Chen and Christopher Manning. A Fast and Accurate Dependency Parser Using Neural Networks. In EMNLP 2014.
New models can be trained from the command line; see {@link #main}for details on training options. This parser will also output CoNLL-X format predictions; again see {@link #main} for availableoptions.
This parser can also be used programmatically. The easiest way to prepare the parser with a pre-trained model is to call {@link #loadFromModelFile(String)}. Then call {@link #predict(edu.stanford.nlp.util.CoreMap)} on the returnedparser instance in order to get new parses. @author Danqi Chen (danqi@cs.stanford.edu) @author Jon Gauthier
|
|