(self, data_type)
| 98 | |
| 99 | class Batch3DOverflow(Batch3D): |
| 100 | def __init__(self, data_type): |
| 101 | super().__init__(data_type) |
| 102 | |
| 103 | for batch in self._data: |
| 104 | for sample in batch: |
| 105 | sample[...] = (sample.astype(np.int64) * 100000).astype(sample.dtype) |
| 106 | |
| 107 | |
| 108 | class Batch3DNegativeAxes(Batch3D): |