Yuriy Zaletskyy
Yuriy Zaletskyy

Reputation: 5151

Why deeplearning4j regression example doesn't apply normalization for summing?

While debugging regression sample of deeplearning4j I've noticed that it doesn't have normalization of data inputs and outputs. So first of all question, why it doesn't have normalization? And second question, is there somewhere in network architecture normalization mechanism?

As prof of non-normalized input is the following screenshot which was taken right before execution of line

return new ListDataSetIterator(listDs,batchSize);

enter image description here

Upvotes: 1

Views: 1099

Answers (1)

Adam Gibson
Adam Gibson

Reputation: 3205

We actually do normalization. We just don't do it for you automatically. It's right in our examples:

https://github.com/deeplearning4j/dl4j-examples/blob/master/dl4j-examples/src/main/java/org/deeplearning4j/examples/convolution/AnimalsClassification.java#L115

All of our image classifiation examples do this. It's also documented on our website: https://deeplearning4j.org/image-data-pipeline.html We even have videos of this.

Edit: You can also normalize the labels if you want using the same DataNormalization api calling fitLabels(true) before you put data in to the neural network.

If you don't mind could you give me feedback as to how you couldn't find this so we can improve the website? I'm not sure what was missing here.

Upvotes: 2

Related Questions