(self, config: MaskConfig)
| 19 | |
| 20 | class AdaptiveMaskBase: |
| 21 | def __init__(self, config: MaskConfig): |
| 22 | self.config = config |
| 23 | |
| 24 | def maybe_update(self, step: int, splats: Mapping[str, Tensor]) -> None: |
| 25 | """Observe the current splats before running compression.""" |