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

ai.h2o.automl.IAlgo Maven / Gradle / Ivy

There is a newer version: 3.46.0.6
Show newest version
package ai.h2o.automl;

import java.io.Serializable;

public interface IAlgo extends Serializable {
  String name();
  default String urlName() { return name().toLowerCase(); }
  default boolean enabled() { return true; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy