November 2019
Intermediate to advanced
304 pages
8h 40m
English
Input -> Encoded Input -> Decode -> Output
So, we need to train output against input (output ~ input, in an ideal case).
int nEpochs = 30; for( int epoch=0; epoch<nEpochs; epoch++ ){ for(INDArray data : featuresTrain){ net.fit(data,data); } }