train-modle / src /medical /__init__.py
fokan's picture
Initial clean commit: Multi-Modal Knowledge Distillation Platform
ab4e093
raw
history blame contribute delete
387 Bytes
"""
Medical AI components for specialized medical model training
Supports medical datasets, DICOM processing, and medical-specific distillation
"""
from .medical_datasets import MedicalDatasetManager
from .dicom_handler import DicomHandler
from .medical_preprocessing import MedicalPreprocessor
__all__ = [
'MedicalDatasetManager',
'DicomHandler',
'MedicalPreprocessor'
]