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

Method clone

JSAT/src/jsat/regression/RidgeRegression.java:176–184  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

174 }
175
176 @Override
177 public RidgeRegression clone()
178 {
179 RidgeRegression clone = new RidgeRegression(lambda);
180 if(this.w != null)
181 clone.w = this.w.clone();
182 clone.bias = this.bias;
183 return clone;
184 }
185
186 @Override
187 public List<Parameter> getParameters()

Callers

nothing calls this directly

Calls 1

cloneMethod · 0.65

Tested by

no test coverage detected