CoolFace
Modelpublic

Cccccz/HY

sourceHugging Faceupdated 11d agoView on Hugging Face
0likes
__init__.py22 linesDownload Raw Back to models
1"""Project-local Predictor models."""2 3from .predictor import HYWorldPlayPredictor, PredictorConfig4from .predictor_v2 import HYWorldPlayPredictorV2, PredictorV2Config5from .predictor_v3 import HYWorldPlayPredictorV3, TripleFeatureFusion6from .predictor_v4 import HYWorldPlayPredictorV47from .predictor_atc import ATCFeatureFusion, LocalCrossChunkTransport8from .predictor_disca import HYWorldPlayPredictorDisCa9 10__all__ = [11    "HYWorldPlayPredictor",12    "PredictorConfig",13    "HYWorldPlayPredictorV2",14    "PredictorV2Config",15    "HYWorldPlayPredictorV3",16    "TripleFeatureFusion",17    "HYWorldPlayPredictorV4",18    "ATCFeatureFusion",19    "LocalCrossChunkTransport",20    "HYWorldPlayPredictorDisCa",21]22