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

hex.tree.xgboost.XgbVarImp Maven / Gradle / Ivy

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

import hex.VarImp;

public class XgbVarImp extends VarImp {

  final public float[] _covers; // Cover of each variable
  final public int[] _freqs; // Variable frequencies

  public XgbVarImp(String[] names, float[] gains, float[] covers, int[] freqs) {
    super(gains, names);
    _covers = covers;
    _freqs = freqs;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy