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

Method SDCA

JSAT/src/jsat/classifiers/linear/SDCA.java:86–89  ·  view source on GitHub ↗

Creates a new SDCA learner for LogisticLoss logistic-regression. Pure L2 or L1 regularization can be obtained using the #setAlpha(double) alpha parameter.

()

Source from the content-addressed store, hash-verified

84 * {@link #setAlpha(double) alpha} parameter.
85 */
86 public SDCA()
87 {
88 this(1e-5);
89 }
90
91 /**
92 * <br>The implementation will use Elastic-Net regularization by default.

Callers

nothing calls this directly

Calls 4

setLossMethod · 0.95
setLambdaMethod · 0.95
copyOfMethod · 0.80
cloneMethod · 0.65

Tested by

no test coverage detected