Example usage for edu.stanford.nlp.process PTBTokenizer ptb2Text

List of usage examples for edu.stanford.nlp.process PTBTokenizer ptb2Text

Introduction

In this page you can find the example usage for edu.stanford.nlp.process PTBTokenizer ptb2Text.

Prototype

public static String ptb2Text(List<String> ptbWords) 

Source Link

Document

Returns a presentable version of the given PTB-tokenized words.

Usage

From source file:org.ets.research.nlp.stanford_thrift.tokenizer.StanfordTokenizerThrift.java

License:Open Source License

public String untokenizeSentence(List<String> sentenceTokens) {
    return PTBTokenizer.ptb2Text(sentenceTokens);
}