(self, n_frame: int, height: int, width: int,
rnd_state: np.random.RandomState)
| 259 | return h, w |
| 260 | |
| 261 | def __call__(self, n_frame: int, height: int, width: int, |
| 262 | rnd_state: np.random.RandomState) -> Any: |
| 263 | tgt_h, tgt_w = self.preprocess(n_frame, height, width, rnd_state) |
| 264 | return self.flop(n_frame, tgt_h, tgt_w) |
| 265 | |
| 266 | |
| 267 | class BucketConfigHardCoded1(BucketConfig): |
nothing calls this directly
no test coverage detected