Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EdwardRaff/JSAT
/ clone
Method
clone
JSAT/src/jsat/regression/AveragedRegressor.java:73–80 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
71
}
72
73
@Override
74
public
AveragedRegressor clone()
75
{
76
Regressor[] clone =
new
Regressor[this.voters.length];
77
for
(
int
i = 0; i < clone.length; i++)
78
clone[i] = voters[i].clone();
79
return
new
AveragedRegressor(clone);
80
}
81
82
}
Callers
1
testClone
Method · 0.95
Calls
1
clone
Method · 0.65
Tested by
1
testClone
Method · 0.76