3RNN/Lib/site-packages/sklearn/neural_network/__init__.py

12 lines
273 B
Python
Raw Normal View History

2024-05-26 19:49:15 +02:00
"""
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"]