""" Multi-Modal Knowledge Distillation Package This package provides tools for creating new AI models through knowledge distillation from multiple pre-trained models across different modalities. """ __version__ = "1.0.0" __author__ = "Multi-Modal Knowledge Distillation Team" __email__ = "contact@example.com" from .model_loader import ModelLoader from .distillation import KnowledgeDistillationTrainer from .utils import setup_logging, validate_file, cleanup_temp_files __all__ = [ "ModelLoader", "KnowledgeDistillationTrainer", "setup_logging", "validate_file", "cleanup_temp_files" ]