(self)
| 943 | return this |
| 944 | |
| 945 | def copy(self): |
| 946 | config = super().copy() |
| 947 | return self.convert_from_tensor_config( |
| 948 | config, scale=config.scale, offset=config.offset, |
| 949 | channel_axis=self.channel_axis) |
| 950 | |
| 951 | |
| 952 | class OperationQuantizationConfig(Iterable): |
nothing calls this directly
no test coverage detected