CoolFace
Modelpublic

nimo1234/LocateAnything-3B

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
0likes11downloads
__init__.py13 linesDownload Raw Back to batch_utils
1"""Hybrid batched inference helpers for NVIDIA LocateAnything-3B."""2from .hybrid_runtime import load, load_pil3from .engine_hybrid import generate_batch_hybrid, generate_batch_grouped_hybrid, get_last_hybrid_stats4 5__all__ = [6    "load",7    "load_pil",8    "generate_batch_hybrid",9    "generate_batch_grouped_hybrid",10    "get_last_hybrid_stats",11]12__version__ = "0.1.0"13