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

org.mlflow.sagemaker.Predictor Maven / Gradle / Ivy

package org.mlflow.sagemaker;

/**
 * A generic predictor object that provides a uniform interface for model inference. By extending
 * {@link org.mlflow.sagemaker.Predictor}, models of a specific flavor can expose their inference
 * routines for use by generic tools, such as model containers
 */
public interface Predictor {
  /** Performs inference on the specified input and produces a result */
  PredictorDataWrapper predict(PredictorDataWrapper input)
      throws PredictorEvaluationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy