(self, **kwargs)
| 21 | self.use_som_tom = kwargs.get('mm_use_som_tom', True) |
| 22 | |
| 23 | def __call__(self, **kwargs): |
| 24 | if self.task == "captioner": |
| 25 | return super()._construct_caption(**kwargs) |
| 26 | else: |
| 27 | return super()._construct_conv(**kwargs) |
| 28 | |
| 29 | def filter_items(self, items): |
| 30 | """ |
nothing calls this directly
no test coverage detected