All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hex.genmodel.ConverterFactoryProvidingModel Maven / Gradle / Ivy

There is a newer version: 3.46.0.5
Show newest version
package hex.genmodel;

import hex.genmodel.easy.CategoricalEncoder;
import hex.genmodel.easy.EasyPredictModelWrapper;
import hex.genmodel.easy.RowToRawDataConverter;

import java.util.Map;

public interface ConverterFactoryProvidingModel {

    /**
     * @return A new instance of {@link RowToRawDataConverter} related to the underlying {@link hex.genmodel.GenModel}
     */
    RowToRawDataConverter makeConverterFactory(Map modelColumnNameToIndexMap,
                                               Map domainMap,
                                               EasyPredictModelWrapper.ErrorConsumer errorConsumer,
                                               EasyPredictModelWrapper.Config config);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy