Neural Networks Warehouse
Artificial Intelligence Depot
"As knowledge increases, ignorance unfolds." -Kennedy
KNOWLEDGE MESSAGES SUBMIT SEARCH  
Neural Networks
Neural Network fundamentals
 
• Neural Networks

Hey guys; I'm not new to neural networks -- I've been sutdying them off and on for a couple of years now. However, I've never been able to make them work quite right. I wonder if you all might be able to answer a few questions to clear things up.
First, here is a quick design of how my NN's architecture is:
http://cmxx.tripod.com/nnv3/nn_arch.htm
Note the lines are the interconnections, and they all have weights which I try to train. I'm thinking that's incorrect, but none of my resources says that explicitly. So, first question:
*) Should the Input Layer has weighted inputs (from the inputs), or should the input layers simply pass the inputs to the hidden layer
*) If so, then what the heck is the point of the input layer? :)
*) Next, should the weights between the outputs of the hidden layer and the inputs of the output layer be trained (using the Backprop algorithm) as well as the weights between the outputs of the input layer and the inputs of the hidden layer?
Sorry about the semantics in the last question, but I had to be sure I was making very clear the weights to which I'm referring.

Thanks all for your time,
-- CM

1 posts.
Wednesday 20 September, 07:26
Reply
• Neural Networks - Graphical representation

You might want to merge your input (float) column with the Input Layer (neuron) column. I guess this would make more sense, because both colums represent redundant (=nearly the same) information.

Your "design of my current Neural Network Architecture"-layout would then probably look like this:

Example of a 2-3-1 Neural Net Topology

http://www.fpss.info/ai-depot/NN_2-3-1.gif

As you can see, the nodes/units in the input layer just pass the normalized input values without further processing to the posterior nodes/units in the hidden layer.

The 'B'-rhombi denote the bias units. The connection weights (magenta lines) should be trained.

1 posts.
Wednesday 27 September, 19:16
Reply
• ggg

haha

1 posts.
Friday 29 September, 05:16
Reply