SPECTRE-Large / spectre /__init__.py
cclaess's picture
Initial commit
c94af45 verified
"""Top-level package for spectre.
Expose a small, stable public API here so users can do:
from spectre import SpectreImageFeatureExtractor, models
Keep implementations in subpackages; this file only re-exports the most
important symbols and subpackages for convenience.
"""
from .model import SpectreImageFeatureExtractor, MODEL_CONFIGS
from . import models
from . import utils
__version__ = "0.1.0"
__author__ = "Cris Claessens"
__email__ = "c.h.b.claessens@tue.nl"
__all__ = [
"SpectreImageFeatureExtractor",
"MODEL_CONFIGS",
"models",
"utils",
"__version__",
"__author__",
"__email__",
]