__init__.py 289 Bytes
Newer Older
luopl's avatar
luopl committed
1
2
3
4
5
6
7
8
from .image_caption import ImageCaptionInferencer, RefImageCaptionInferencer
from .texttoimage_regionretrieval_inferencer import \
    TextToImageRegionRetrievalInferencer

__all__ = [
    'ImageCaptionInferencer', 'RefImageCaptionInferencer',
    'TextToImageRegionRetrievalInferencer'
]