This repository was archived by the owner on Jul 10, 2021. It is now read-only.

Description
After studying the sknn api I could not plot a validation curve to test over-fitting.
from sknn.mlp import Classifier, Layer
nn = Classifier( layers=[ Layer("Maxout", units=100, pieces=2), Layer("Softmax")], learning_rate=0.001, n_iter=25)
result = nn.fit(X, y, w)
Which attribute carries the result mse/mcc per epoch/iteration?