3RNN/Lib/site-packages/sklearn/neural_network/__init__.py
2024-05-26 19:49:15 +02:00

12 lines
273 B
Python

"""
The :mod:`sklearn.neural_network` module includes models based on neural
networks.
"""
# License: BSD 3 clause
from ._multilayer_perceptron import MLPClassifier, MLPRegressor
from ._rbm import BernoulliRBM
__all__ = ["BernoulliRBM", "MLPClassifier", "MLPRegressor"]