Method and Description |
---|
org.tribuo.data.columnar.RowProcessor.copy()
In a future release this API will change, in the meantime this is the correct way to get a row
processor with clean state.
When using regexMappingProcessors, RowProcessor is stateful in a way that can sometimes make it fail the second time it is used. Concretely: RowProcessor rp; Dataset ds1 = new MutableDataset(new CSVDataSource(csvfile1, rp)); Dataset ds2 = new MutableDataset(new CSVDataSource(csvfile2, rp)); // this may fail due to state in rpThis method returns a RowProcessor with clean state and the same configuration as this row processor. |
org.tribuo.common.libsvm.LibSVMModel.getModel() |
org.tribuo.data.columnar.ResponseProcessor.setFieldName(String)
Response processors should be immutable; downstream objects assume that they are
Set the field name this ResponseProcessor uses.
|
org.tribuo.data.columnar.processors.response.QuartileResponseProcessor.setFieldName(String) |
org.tribuo.data.columnar.processors.response.FieldResponseProcessor.setFieldName(String) |
org.tribuo.data.columnar.processors.response.BinaryResponseProcessor.setFieldName(String) |
Constructor and Description |
---|
org.tribuo.data.columnar.extractors.DateExtractor(String, String, DateTimeFormatter) |
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.