(self, cls_ind, w, b)
| 129 | # self.net.params['cls_score'][1].data[0] = 0 |
| 130 | |
| 131 | def update_net(self, cls_ind, w, b): |
| 132 | self.net.params['cls_score'][0].data[cls_ind, :] = w |
| 133 | self.net.params['cls_score'][1].data[cls_ind] = b |
| 134 | |
| 135 | def train_with_hard_negatives(self): |
| 136 | _t = Timer() |
no outgoing calls
no test coverage detected