Spaces:
Running
on
Zero
Running
on
Zero
File size: 634 Bytes
f9a6349 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"""
VINE HuggingFace Interface
VINE (Video Understanding with Natural Language) is a model that processes videos
along with categorical, unary, and binary keywords to return probability
distributions over those keywords for detected objects and their relationships.
This package provides a HuggingFace-compatible interface for the VINE model,
including configuration, model, and pipeline classes.
"""
from .vine_config import VineConfig
from .vine_model import VineModel
from .vine_pipeline import VinePipeline
__version__ = "1.0.0"
__author__ = "LASER Team"
__all__ = [
"VineConfig",
"VineModel",
"VinePipeline"
]
|