for homework I'm suppose to create a multi layer perceptron artificial neural network that does classification.
I'm new to PyBrain and I'm trying to create a feed forward neural network with back propagation and after googling around, it seems like there are two ways to do it in PyBrain, use buildNetwork or FeedForwardNetwork.
Additionally, I learned in class that perceptrons have step functions and from what I've seen in the documentation there doesn't seem to be a step function option.
I can't find the difference between the two and therefore can't determine which would be better for my task.
Thank you