(self, top, propagate_down, bottom)
| 19 | top[0].data[...] = 10 * bottom[0].data |
| 20 | |
| 21 | def backward(self, top, propagate_down, bottom): |
| 22 | bottom[0].diff[...] = 10 * top[0].diff |
| 23 | |
| 24 | |
| 25 | class ExceptionLayer(caffe.Layer): |
no outgoing calls
no test coverage detected