I have a simple example for which I am attempting to perform a classification using the MLPClassifier. from sklearn.neural_network import MLPClassifier # What
I have this dataset (shape is (36,2)). x is a numerical pattern, y is a binary class (0,1) x y [0.2, 0.3, 0.5 ..... 0.5] 0 [0.1, 0.4, 0.5 ..... 0.9] 1 and so