ResNet50-P3 / __init__.py
chrisnguyenx's picture
Upload folder using huggingface_hub
c4b649d verified
Raw
History Blame Contribute Delete
508 Bytes
"""
modelAI_ResNet50 Package
========================
Bộ đóng gói mô hình AI phân loại Võng mạc Tiểu đường (Diabetic Retinopathy Classification).
Mô hình: ResNet-50.
"""
from .model import ResNet50_DR, build_model
from .preprocessing import prepare_image_tensor, full_preprocess_pipeline, load_image
from .predictor import DRPredictor
__all__ = [
"ResNet50_DR",
"build_model",
"prepare_image_tensor",
"full_preprocess_pipeline",
"load_image",
"DRPredictor",
]