MLPClassifier constructor

MLPClassifier(
  1. List<int> layers,
  2. List<List> coefs,
  3. List<List> intercepts,
  4. List<int> classes,
  5. String activation,
  6. String outActivation,
)

To manually instantiate the MLPClassifier. The parameters are lifted directly from scikit-learn. See the attributes here: https://scikit-learn.org/stable/modules/generated/sklearn.neural_network.MLPClassifier.html

Implementation

MLPClassifier(this.layers, this.coefs, this.intercepts, this.classes,
    this.activation, this.outActivation);