
hex.api.DeepLearningBuilderHandler Maven / Gradle / Ivy
package hex.api;
import hex.deeplearning.DeepLearning;
import hex.schemas.DeepLearningV3;
import water.api.ModelBuilderHandler;
import water.api.Schema;
public class DeepLearningBuilderHandler extends ModelBuilderHandler {
/** Required so that Handler.handle() gets the correct schema types. */
@SuppressWarnings("unused") // called through reflection by RequestServer
public Schema train(int version, DeepLearningV3 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 DeepLearningV3 validate_parameters(int version, DeepLearningV3 builderSchema) {
return super.do_validate_parameters(version, builderSchema);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy