Spaces:
Running on Zero
Running on Zero
File size: 315 Bytes
454ecdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """MANIFOLD: Novel Deep Learning Architecture for CS2 Cheat Detection"""
__version__ = "0.1.0"
from manifold.config import ModelConfig, TrainingConfig, DataConfig
from manifold.models.manifold_lite import MANIFOLDLite
__all__ = [
"ModelConfig",
"TrainingConfig",
"DataConfig",
"MANIFOLDLite",
]
|