Spaces:
Running
on
Zero
Running
on
Zero
| """ | |
| 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" | |
| ] | |