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

hex.schemas.SharedTreeV2 Maven / Gradle / Ivy

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

import hex.tree.SharedTree;
import hex.tree.SharedTreeModel.SharedTreeParameters;
import water.api.API;
import water.api.ModelParametersSchema;
import water.fvec.Frame;
import water.util.PojoUtils;

public abstract class SharedTreeV2 extends ModelBuilderSchema {

  public abstract static class SharedTreeParametersV2 extends ModelParametersSchema {
    public String[] fields() { return new String[] {
        "destination_key",
        "training_frame",
        "ntrees"
      }; }

    // Input fields
    @API(help="Number of trees. Grid Search, comma sep values:50,100,150,200")
    public int ntrees;

    @Override public SharedTreeParametersV2 fillFromImpl(SharedTreeParameters parms) {
      super.fillFromImpl(parms);
      return this;
    }

  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy