Spaces:
Sleeping
Sleeping
File size: 528 Bytes
b46360a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | """
MelanoScope AI - Enterprise Skin Lesion Classification System
A production-ready deep learning application for dermatoscopic analysis.
"""
__version__ = "1.0.0"
__author__ = "Daniel Cavadia"
__institution__ = "Universidad Central de Venezuela"
from .core.model import MelanoScopeModel
from .ui.components import MelanoScopeUI
from .config.settings import ModelConfig, UIConfig, AppConfig
__all__ = [
"MelanoScopeModel",
"MelanoScopeUI",
"ModelConfig",
"UIConfig",
"AppConfig"
]
|