Spaces:
Running
Running
File size: 612 Bytes
ab4e093 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"""
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"
]
|