Tagged Questions
0
votes
1answer
92 views
Confusion with inputs and targets for a neural network
Recently I've posted many question s regarding a character recognition program that I am making. I thought I had it working fully until today. I think it has to do with my training of the network. ...
0
votes
1answer
106 views
Confusion with neural networks in MATLAB
I'm working on character recognition (and later fingerprint recognition) using neural networks. I'm getting confused with the sequence of events. I'm training the net with 26 letters. Later I will ...
0
votes
0answers
16 views
Which error should we take in consideration in neural network? [duplicate]
Which error must I take in consideration, for a neural network,
the error of training, the error of validation ?
A neural network for prediction, with Training set, Validation set and Test set
I ...
1
vote
1answer
45 views
Interpret outputs of neural network
I've implemented a neural network for prediction,
for the input data, I've used the following formula to normalize data
Data_normalized_i= [Data_i - Min_data]/[Max_Data- Min_data]
I've some ...
0
votes
0answers
161 views
combining two neural networks into one
im trying to make a multithreaded extension to the FANN library. Because FANN is not threadsafe i will do this:
divide the training set in N pieces (N is the number of CPUs)
copy the ANN to N copies
...
1
vote
1answer
120 views
Overflowing of neural network weights in training
I'm training my neural network to classify some things in an image. I crop 40x40 pixels images and classify it that it as some object or not. So it has 1600 input neurons, 3 hidden layers (500, 200, ...
0
votes
1answer
332 views
Simple Linear Neural Network Weights from Training , are not compatable with training results, cant understand why
I have a very strange problem
The weights that I get from training, when implied directly on input , return different results!
Ill show it on a very simple example
lets say we have an input vector x= ...
1
vote
3answers
2k views
Implementing a Neural Network in Java: Training and Backpropagation issues
I'm trying to implement a feed-forward neural network in Java.
I've created three classes NNeuron, NLayer and NNetwork. The "simple" calculations seem fine (I get correct sums/activations/outputs), ...
3
votes
1answer
753 views
Training neural network in Ruby
I'm a total beginner when it comes to neural networks. I've been wrestling with ruby-fann and ai4r all day and unfortunately I don't have anything to show for it, so I figured I would come onto Stack ...
1
vote
1answer
1k views
Neural Network training in parallel, better to use Hadoop or a gpu?
I need to train a neural network with 2-4 hidden layers, not sure yet on the structure of the actual net. I was thinking to train it using Hadoop map reduce (cluster of 12 pcs) or a gpu in order to ...
5
votes
1answer
932 views
How to use PyBrain?
PyBrain is a Python-based library for creating neural networks. I've looked at the tutorials on their site but they don't seem to help me very much. The simulation I plan to do is have a car that ...
0
votes
1answer
825 views
matlab neural network gradient descent and mean square error
I want to know how grdient descent algorithm works on matlab network training and how MSE is calculated - I have my own app but it doesnt work as the matlab nn and I want to know why.
My algorithm ...
0
votes
1answer
796 views
Scaling input data in matlab neural network
Is there any way to disable / change scaling method of input data in matlab neural network?
When I create network with newff I have to give min and max values of inputs...
I need it for testing ...
1
vote
1answer
2k views
Matlab - Use trained net for testing other images
I have trained ancient coin images using feed forward neural network. Now, I want to use that trained network to use for testing images. I did as follows;
load net.mat;
load Features.mat; %this is ...
10
votes
2answers
479 views
Multi-layer neural network wont predict negative values
I have implemented a multilayer perceptron to predict the sin of input vectors. The vectors consist of four -1,0,1's chosen at random and a bias set to 1. The network should predict the sin of sum of ...
3
votes
1answer
3k views
Using nntool [MATLAB] from command line
I have this code:
in = [5 columns of data-points];
out = [1 column of data-points];
net = newfit(in,out,5);
net = train(net,in,out);
now I want to
access the error variable that is generated (so ...