MiniGPT-4/minigpt4/datasets/datasets/mixins/mixins.py

31 lines
660 B
Python

from collections import OrderedDict
class __ImageDisplMixin:
def displ_item(self, index):
sample, ann = self.__getitem__(index), self.annotation[index]
return OrderedDict(
{
"file": ann["image"],
"caption": ann["caption"],
"image": sample["image"],
}
)
class __AudioDisplMixin:
def displ_item(self, index):
sample, ann = self.__getitem__(index), self.annotation[index]
# TODO: Finish the Audio Display Mixin
'''
return OrderedDict(
{
}
)
'''
raise NotImplementedError