Kamran78651214's picture
Upload 82 files
ae272a9 verified
raw
history blame contribute delete
402 Bytes
import warnings
from .vanilla import MODNetModel
try:
from .bayesian import BayesianMODNetModel
except ImportError:
warnings.warn(
"BayesianMODNetModel is deprecated and may be removed in the future.",
DeprecationWarning,
)
BayesianMODNetModel = None
from .ensemble import EnsembleMODNetModel
__all__ = ("MODNetModel", "BayesianMODNetModel", "EnsembleMODNetModel")