(self)
| 270 | raise NotImplementedError("Decoder-only model: call decode_video(...) instead.") |
| 271 | |
| 272 | def clean_mem(self): |
| 273 | self.mem = [None] * len(self.decoder) |
| 274 | |
| 275 | class DotDict(dict): |
| 276 | __getattr__ = dict.__getitem__ |
no outgoing calls
no test coverage detected