Example usage for edu.stanford.nlp.parser.lexparser Options display

List of usage examples for edu.stanford.nlp.parser.lexparser Options display

Introduction

In this page you can find the example usage for edu.stanford.nlp.parser.lexparser Options display.

Prototype

public void display() 

Source Link

Usage

From source file:LexicalizedParserUnsupervisedDA.java

private static void printOptions(boolean train, Options op) {
    op.display();
    if (train) {//from ww  w  . j a v  a2  s . com
        op.trainOptions.display();
    } else {
        op.testOptions.display();
    }
    op.tlpParams.display();
}