MelanoScopeAI / src /__init__.py
dcavadia
update project structure
b46360a
raw
history blame contribute delete
528 Bytes
"""
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"
]