(self, reg_weights=1e-2)
| 174 | return para_new |
| 175 | |
| 176 | def reg_loss(self, reg_weights=1e-2): |
| 177 | loss_1 = reg_weights * self.array.norm(2) |
| 178 | loss_2 = reg_weights * self.index.norm(2) |
| 179 | |
| 180 | return loss_1 + loss_2 |
nothing calls this directly
no outgoing calls
no test coverage detected