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

water.api.SplitFrameV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.api;

import hex.SplitFrame;
import water.Key;
import water.api.KeyV3.FrameKeyV3;

public class SplitFrameV3 extends RequestSchema {
  @API(help="Job Key")
  public KeyV3.JobKeyV3 key;

  @API(help="Dataset")
  public FrameKeyV3 dataset;

  @API(help="Split ratios - resulting number of split is ratios.length+1", json=true)
  public double[] ratios;

  @API(help="Destination keys for each output frame split.", direction = API.Direction.INOUT)
  public FrameKeyV3[] destination_frames;

  @Override public SplitFrame createImpl() { return new SplitFrame(); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy