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

hex.genmodel.easy.exception.PredictWrongModelCategoryException Maven / Gradle / Ivy

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

/**
 * Wrong model category exception.
 *
 * Each generated model is of exactly one category.
 * Only one of the different predict calls works with that category.
 *
 * For example, a model of category Binomial can only respond properly to
 * predictBinomial().
 *
 * Attempting to call the wrong predict method for a model results in this exception.
 */
public class PredictWrongModelCategoryException extends PredictException {
  public PredictWrongModelCategoryException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy