(self)
| 148 | @register_class |
| 149 | class LeakyRelu(CaffeOpExporter): |
| 150 | def set_attr(self): |
| 151 | self.layer.relu_param.negative_slope = refine_value(self.op.attributes.get('alpha', 0.01)) |
| 152 | |
| 153 | |
| 154 | class _Pooling(CaffeOpExporter): |
nothing calls this directly
no test coverage detected