MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / setMaxIncrease

Method setMaxIncrease

JSAT/src/jsat/datatransform/featureselection/SFS.java:339–344  ·  view source on GitHub ↗

Sets the maximum allowable the maximum tolerable increase in error when a feature is added @param maxIncrease the maximum allowable the maximum tolerable increase in error when a feature is added

(double maxIncrease)

Source from the content-addressed store, hash-verified

337 * in error when a feature is added
338 */
339 public void setMaxIncrease(double maxIncrease)
340 {
341 if (maxIncrease < 0)
342 throw new IllegalArgumentException("Decarese must be a positive value, not " + maxIncrease);
343 this.maxIncrease = maxIncrease;
344 }
345
346 /**
347 *

Callers 1

SFSMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected