use of org.deeplearning4j.text.tokenization.tokenizer.preprocessor.EndingPreProcessor in project deeplearning4j by deeplearning4j.
the class EndingPreProcessorTest method testPreProcessor.
@Test
public void testPreProcessor() {
TokenPreProcess preProcess = new EndingPreProcessor();
String endingTest = "ending";
assertEquals("end", preProcess.preProcess(endingTest));
}
Aggregations