remove duplicate evalSmall

This commit is contained in:
Lindsey Heagy
2016-05-10 14:51:56 -07:00
parent fb5434695f
commit eaa37f42e4
-4
View File
@@ -469,10 +469,6 @@ class Simple(BaseRegularization):
self._W = sp.vstack(wlist)
return self._W
@Utils.timeIt
def _evalSmall(self, m):
r = self.Wsmall * ( self.mapping * (m - self.mref) )
return 0.5 * r.dot(r)
@property
def W(self):