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:
Could somebody please share a basic and short example that does this?
UPD: Something like this but for deeplearning4j would really help.
Take a look at this example which shows how to train a nn on an XOR relationship. First you have to convert your doubles into ndarrays. To do this use the Nd4j.create(...) method. Then you need to set up a dataset like here.