Files
sglang/python/sglang/srt/multimodal/evs/__init__.py
2026-01-05 16:18:07 +08:00

12 lines
316 B
Python

"""https://arxiv.org/abs/2510.14624: Efficient Video Sampling: Pruning Temporally Redundant Tokens for Faster VLM Inference"""
from .evs_module import EVS, EVSConfig, EVSEmbeddingResult
from .evs_processor import EVSProcessor
__all__ = [
"EVS",
"EVSConfig",
"EVSEmbeddingResult",
"EVSProcessor",
]