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

org.mlflow.Flavor Maven / Gradle / Ivy

There is a newer version: 2.16.2
Show newest version
package org.mlflow;

/** Interface for exposing information about an MLflow model flavor. */
public interface Flavor {
  /** @return The name of the model flavor */
  String getName();

  /**
   * @return The relative path to flavor-specific model data. This path is relative to the root
   *     directory of an MLflow model
   */
  String getModelDataPath();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy