class DeepPurpose.models.MLP(nn.Sequential)
Multi-Layer Perceptron (MLP) (Source) is a class of feedforward artificial neural network. An MLP consists of at least three layers of nodes: an input layer, a hidden layer and an output layer.
constructor create an instance of MLP
__init__(self, input_dim, hidden_dim, hidden_dims)
Calling functions implement the feedforward procedure of MLP.
forward(self, v)