I'm new to deep learning, (particularly deeplearning4j) and am trying out the examples. Particularly, I want to know which type neural-network is used in the following CSV Example. Is this a deep learning neural network or just "regular neural network". I do understand that difference between normal neural network and deeplearning neural network is that DL algorithms tackle "vanishing gradient" problem, whereas normal neural network don't. I'm bit confused here. What I feel is that following is regular neural network, but I want to confirm.
MultiLayerConfiguration conf = new NeuralNetConfiguration.Builder()
.seed(seed)
.iterations(iterations)
.activation(Activation.TANH)
.weightInit(WeightInit.XAVIER)
.learningRate(0.1)
.regularization(true).l2(1e-4)
.list()
.layer(0, new DenseLayer.Builder().nIn(numInputs).nOut(3)
.build())
.layer(1, new DenseLayer.Builder().nIn(3).nOut(3)
.build())
.layer(2, new OutputLayer.Builder(LossFunctions.LossFunction.NEGATIVELOGLIKELIHOOD)
.activation(Activation.SOFTMAX)
.nIn(3).nOut(outputNum).build())
.backprop(true).pretrain(false)
.build();
//run the model
MultiLayerNetwork model = new MultiLayerNetwork(conf);
model.init();
model.setListeners(new ScoreIterationListener(100));
model.fit(trainingData);