MCPcopy Index your code
hub / github.com/TheAlgorithms/Python / multilayer_perceptron_classifier.py

File multilayer_perceptron_classifier.py

machine_learning/multilayer_perceptron_classifier.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1from sklearn.neural_network import MLPClassifier
2
3X = [[0.0, 0.0], [1.0, 1.0], [1.0, 0.0], [0.0, 1.0]]
4y = [0, 1, 0, 0]

Callers

nothing calls this directly

Calls 2

fitMethod · 0.45
predictMethod · 0.45

Tested by

no test coverage detected