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

hex.api.ExampleBuilderHandler Maven / Gradle / Ivy

There is a newer version: 3.46.0.6
Show newest version
package hex.api;

import hex.example.Example;
import hex.schemas.ExampleV3;
import water.api.ModelBuilderHandler;
import water.api.Schema;

public class ExampleBuilderHandler extends ModelBuilderHandler {
  /** Required so that Handler.handle() gets the correct schema types. */
  @SuppressWarnings("unused") // called through reflection by RequestServer
  public Schema train(int version, ExampleV3 builderSchema) {
    return super.do_train(version, builderSchema);
  }

  /** Required so that Handler.handle() gets the correct schema types. */
  @SuppressWarnings("unused") // called through reflection by RequestServer
  public ExampleV3 validate_parameters(int version, ExampleV3 builderSchema) {
    return super.do_validate_parameters(version, builderSchema);
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy