23 lines
610 B
Python
23 lines
610 B
Python
from .base import (BatchedTensors, MultiModalDataBuiltins, MultiModalDataDict,
|
|
MultiModalInputs, MultiModalPlugin)
|
|
from .registry import MultiModalRegistry
|
|
|
|
MULTIMODAL_REGISTRY = MultiModalRegistry()
|
|
"""
|
|
The global :class:`~MultiModalRegistry` is used by model runners to
|
|
dispatch data processing according to its modality and the target model.
|
|
|
|
See also:
|
|
:ref:`input_processing_pipeline`
|
|
"""
|
|
|
|
__all__ = [
|
|
"BatchedTensors",
|
|
"MultiModalDataBuiltins",
|
|
"MultiModalDataDict",
|
|
"MultiModalInputs",
|
|
"MultiModalPlugin",
|
|
"MULTIMODAL_REGISTRY",
|
|
"MultiModalRegistry",
|
|
]
|