I need a very basic classification or similar example for deeplearning4j framework.
I have the classic training set in form of pairs of already normalized double arrays [0.01, 0.45, 0.0, ....] -> [0.0, 0.1, 0.0, 0.0, ...] and need to:
- Build and train a simple feedforward neural network with N hidden layers
- Feed a set of uncategorized double arrays to trained network and get a set of output vectors
Could somebody please share a basic and short example that does this?
UPD: Something like this but for deeplearning4j would really help.