Skip to content

Commit afac255

Browse files
committed
machine_learning\multilayer_parceptron
1 parent d298c34 commit afac255

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

machine_learning/multilayer_perceptron_classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def multilayer_perceptron_classifier(
6262
>>> X = [[0.0, 0.0], [1.0, 1.0], [1.0, 0.0], [0.0, 1.0]]
6363
>>> y = [0, 1, 0, 0]
6464
>>> multilayer_perceptron_classifier(X, y, [[0.0, 0.0], [1.0, 1.0]])
65-
[0, 0]
65+
# Multiple possible outputs True
6666
"""
6767
if len(train_features) != len(train_labels):
6868
raise ValueError("Number of training samples and labels must match.")

0 commit comments

Comments
 (0)