20 lines
357 B
Python
20 lines
357 B
Python
"""
|
|
TODO
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
# Expose core components for easier import
|
|
from .ensemble_evaluation import (
|
|
run_ensemble_evaluation
|
|
)
|
|
|
|
|
|
# Expose main configuration class from utils
|
|
from ..utils import MainConfig
|
|
|
|
# Define __all__ for explicit public API (optional but good practice)
|
|
__all__ = [
|
|
"run_ensemble_evaluation",
|
|
"MainConfig",
|
|
] |