Signed-off-by: Xiaowei Jiang <xwjiang2010@gmail.com> Co-authored-by: Xiaowei Jiang <xwjiang2010@gmail.com> Co-authored-by: ywang96 <ywang@roblox.com> Co-authored-by: xwjiang2010 <87673679+xwjiang2010@users.noreply.github.com> Co-authored-by: Roger Wang <136131678+ywang96@users.noreply.github.com>
22 lines
556 B
Python
22 lines
556 B
Python
from .base import (BatchedTensors, 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",
|
|
"MultiModalDataDict",
|
|
"MultiModalInputs",
|
|
"MultiModalPlugin",
|
|
"MULTIMODAL_REGISTRY",
|
|
"MultiModalRegistry",
|
|
]
|