Hi,

I have some doubts regarding the neural networks.Following are some of them:

  1. What are the input node represents? Are each of the node vector of features for each training sample of or each of the node is a component of feature vector of each training example.
  2. Does the training methods like batch mode and incremental mode affects in convergence of the network?
  3. I came to know that, in batch mode, we have to find the con-current vector? How is it calculated?

Any illustration or link to resource which can clear my doubts is highly appreciated.Thanks in advance.

asked Feb 10 '12 at 01:06

Kuri_kuri's gravatar image

Kuri_kuri
293273040

edited Feb 10 '12 at 01:14


2 Answers:
  1. Usually the input nodes are one per each feature vector, for example, if you have a 500 pixel image, and you want the features to be the pixels, you need a 500 input node network. But if you add more features, or might want to model your network with less features, you can do it as well and reduce the size of the input layer.

  2. I'm not familiarized with incremental mode, but I can tell you that Newtonian methods or stochastic gradient descent may be faster than batch gradient descent.

  3. Probably form a geometric point of view you can view the optimization of the NN weights as projecting your solution into the feature space, thus obtaining a concurrent vector. (same direction different magnitude)

I'll recommend you to check this course, the explanation is quite simple, and I guess you might get a better hold on how to train the NN in an easier way, specially if it's the first time you encounter them.

answered Feb 10 '12 at 02:09

Leon%20Palafox's gravatar image

Leon Palafox ♦
40857194128

For the second question, see for example Bottou and LeCun's "Large Scale Online Learning" paper. For the case of large datasets, it contains both experimental and theoretical reasons showing that on-line learning algorithms work faster than batch variants, while reaching the same error.

answered Feb 16 '12 at 15:57

Lucian%20Sasu's gravatar image

Lucian Sasu
513172634

edited Feb 17 '12 at 01:29

Your answer
toggle preview

powered by OSQA

User submitted content is under Creative Commons: Attribution - Share Alike; Other things copyright (C) 2010, MetaOptimize LLC.