Backpropagation is a common method of teaching artificial neural networks how to perform a given task.
-1
votes
0answers
25 views
Python implementation of multilayer perceptron does not learn XOR
I am trying to implement a basic multilayer perceptron in Python. As a first step before I can apply it to a more complex problem, I am trying to validate it and make it learn XOR. I think there may ...
0
votes
1answer
36 views
AForge.NET - Backpropagation learning always returns values [-1;1]
I have some problem with backpropagation learning using AForge.NET - Neuro Learning - Backpropagation . I actually try to implement neural network as in samples (Aproximation). My problem is about ...
0
votes
1answer
39 views
python(3.23) Implementation back propagation, type error on list
I get a type error when trying to run my back propagation on a neural net when trying to train it to do 'and' pattern.
just do be clear, I'm not requesting anyone read or review my code..
I'm just ...
2
votes
2answers
73 views
Python Neural Network Backpropagation
I'm learning about neural networks, specifically looking at MLPs with a back-propagation implementation. I'm trying to implement my own network in python and I thought I'd look at some other libraries ...
1
vote
1answer
106 views
Code running perfectly on host, put in a kernel, fails for mysterious reasons
I have to port a pre-existing “host-only” backpropagation implementation to CUDA. I think the nature of the algorithm doesn’t matter here, so I won’t give much explanation about the way it works. What ...
1
vote
1answer
73 views
Can a back propagation train two xor problems at one time?
Assume that I have a dataset like this:
[ [0, 0], [0, 1]
[0, 1], [1, 0]
[1, 0], [1, 0]
[1, 1], [0, 1] ]
actually, y1 = x1 XOR x2, and y2 = not(x1 XOR x2), which seems not strange ...
0
votes
0answers
60 views
Function prototype error while implementing neural network in Python using OpenCV
We are trying to implement a Neural Network in Python. This is our code:
import cv
from opencv.cv import *
from opencv.highgui import *
from opencv.ml import *
def trainMachine():
ann = ...
-2
votes
3answers
70 views
How to initialize an array of structs with another stuct? [closed]
Hello I am writing an algorithm for back propagation in c++, it consists of 1 input layer 1 hidden layer and 1 output layer.
I am curious how to initialize my inputlayer, hiddenlayer, and outputlayer.
...
1
vote
1answer
71 views
Neural network - output is converging to 0, python
I am trying to classify 2D data in to 3 classes in multy-layer neural network using simple back-propagation and one-hot encoding. After I changed incremental learning to batch learning my output is ...
2
votes
3answers
96 views
Which activation function should I use for this Neural Network?
We are developing a neural network for Checkers game. In our training data,
0 represents blank cell,
1 represents white piece,
-1 represents white king,
2 represents black piece and
-2 represents ...
0
votes
1answer
257 views
How to select number of Input layers, hidden layers and output layer using newff in Matlab?
I am using newff for stock price forecasting project, I am trying to setup a Back-propagation feed forward ANN of 4 inputs, 1 hidden layers and 1 output layer (4-1-1). I have read many forums to learn ...
0
votes
2answers
205 views
How to implement Back Propagation algorithm for the following input/output?
I would like to implement a back propagation algorithm in python or C++ for the following input
[[11, 15], [22, 17]]
[[8, 11], [23, 19]]
[[9, 14], [25, 22]]
[[6, 9], [17, 13]]
[[2, 6], [29, 25]]
[[4, ...
0
votes
1answer
68 views
Training Neural Networks with big linear output
I am programming a Feed Forward Neural Network which I want to use in combination with Reinforcement Learning. I have one hidden layer with tanh as activation function and a linear output layer.
I ...
1
vote
1answer
62 views
Incremental (on-line) Backpropagation stopping criteria
In an on-line implementation of a Backpropagation ANN, how would you determine the stopping criteria?
The way that I have been doing it(which I am sure is incorrect) is to average the error of each ...
0
votes
0answers
118 views
ANN with Backpropagation not classifying correctly
I have an ANN which I am using on the iris data set found here:-
Iris data
My network is initiated as follows:-
package neuralnet;
import neuralnet.networks.*;
import neuralnet.framework.transfer.*;
...
-1
votes
1answer
116 views
Testing of neural network in matlab not according to training [closed]
Hi I am new to MatLab and trying to build a face recognition system. I have taken images of 4 people in front, left and right profiles (each 3 images) with slight variation in the face (using face ...
2
votes
1answer
243 views
python - multilayer perceptron, backpropagation, can´t learn XOR
i am trying implement multilayer perceptron with backpropagation, but still i cant teach him XOR, i will also often get math range error. I looked in books and google for learning rules and error back ...
2
votes
2answers
120 views
Java - normalize and denormalize nominal attributes in neural networks
Hi I am building a simple multilayer network which is trained using back propagation. My problem at the moment is that some attributes in my dataset are nominal (non numeric) and I have to normalize ...
2
votes
1answer
106 views
Octave backpropagation implementaion issues
I wrote a code to implement steepest descent backpropagation with which i am having issues. I am using the Machine CPU dataset and have scaled the inputs and outputs into range [0 1]
The codes in ...
0
votes
0answers
45 views
Fann C compilation using Visual Studio 2010
I am user of neural network, and I am looking for incremental back-propagation neural network for regression. I have tried batch back-propagation with Matlab, but the results are poor.
Is it possible ...
1
vote
1answer
891 views
Backpropagation algorithm (Matlab): output values are saturating to 1
I have coded up a backpropagation algorithm in Matlab based on these notes: http://dl.dropbox.com/u/7412214/BackPropagation.pdf
My network takes input/feature vectors of length 43, has 20 nodes in ...
0
votes
0answers
71 views
Error rate in backprop matlab
I'm running the pattern recognition neuralnet toolbox in Matlab, I'm trying to print out the error rates generated by the testing data (15%) of each epoch. How could I possibly do that?
Thanks!
0
votes
1answer
149 views
Do we need to normalize input segment of training set only?
I want to know that data normalization that is required whether it must be applied to whole part of training set both input and output or input segment is enough.
1
vote
2answers
64 views
ANN Training Set Scaling
I am working on an ANN using Backpropagation at the moment, for a classification task. I am however a little confused about normalizing the data set I am using(I do not have a strong stats/probability ...
2
votes
1answer
318 views
what “target” do i put in iris dataset nntool matlab?
I am new in using matlab so this might be easy. I am trying to make an iris dataset neural network in matlab using nntool(feed-forward back propagation network). but i cant find out what the target ...
0
votes
1answer
112 views
Output Value Of Neural Network Does Not Arrive To Desired Values
I made a neural network that also have Back Propagation.it has 5 nodes in input layer,6 nodes in hidden layer,1 node in output layer and have random weights and i use sigmoid as activation function.
...
3
votes
1answer
343 views
Activation function for multilayer perceptron
I have tried to train simple backpropagation neural network with the xor function. When I use tanh(x) as activation function, with the derivative 1-tanh(x)^2, I get the right result after about 1000 ...
1
vote
1answer
160 views
Back propagation algorithm in neural network with shortcut connections
I'm currently implementing a multi layer perceptron in F# and I will implement the standard back propagation algorithm, but I'm wondering how the algorithm has to be modified to handle shortcut ...
0
votes
2answers
371 views
How to correctly export Weight and Bias value of Backpropagation neural network into another programming language (Java)
I created backpropagation Neural Network using Matlab. I tried to implement XOR gate using Matlab, then getting its weight and bias to create neural network in java. Network consist of 2 input neuron, ...
4
votes
1answer
120 views
Should I Scale My Equation Output Data?
With this link i implemented a neural network to calculate y=x*x(x is input and y is output) equation.I
took 1 unit in input layer,4 unit in hidden layer and 1 unit in output layer.
But When I enter ...
0
votes
0answers
36 views
2nd order backpropagation
I'm trying to get a handle on backpropagation for a small enough number of dimensions for 2nd order backpropagation to be tractable, and I was hoping someone might understand it enough to explain the ...
0
votes
0answers
49 views
Error in compute method while outputting the result of neuralnetwork
I am getting error in compute method and also in prediction method after training the neural network with neuralnet R package.
Here is the code.
library("neuralnet")
#read dataset
...
1
vote
1answer
251 views
My neural net learns sin x but not cos x
I have build my own neural net and I have a weird problem with it.
The net is quite a simple feed-forward 1-N-1 net with back propagation learning. Sigmoid is used as activation function.
My ...
1
vote
1answer
394 views
Can somebody please explain the backpropagation algorithm to me?
I've recently completed Professor Ng's Machine Learning course on Coursera, and while I loved the entire course, I never really managed to understand the backpropagation algorithm for training neural ...
0
votes
0answers
114 views
backpropagation running slow
I've made a Backpropagation RNA using C#, it receives a 50x50 grayscale bitmap and should output 4 bits representing some alphabet characters.
It's working too slow, VS2010 says that 40% of the time ...
0
votes
1answer
169 views
Backpropagation learning fails to converge
I use a neural network with 3 layers for categorization problem: 1) ~2k neurons 2) ~2k neurons 3) 20 neurons. My training set consists of 2 examples, most of the inputs in each example are zeros. For ...
2
votes
1answer
158 views
Questions about the Backpropogation Algorithm
I have a few questions concerning backpropogation. I'm trying to learn the fundamentals behind neural network theory and wanted to start small, building a simple XOR classifier. I've read a lot of ...
2
votes
1answer
450 views
Backpropagation for Neural Network - Python
I am writing a program to do neural network in python I am trying to set up the backpropagation algorithm. The basic idea is that I look through 5,000 training examples and collect the errors and ...
0
votes
0answers
98 views
Backpropagation through time steps
I already implemented Backpropagation on a feed forward network in java, now I want to implement BPTT(Backpropagation through time) for recurrent Networks. I want to know the required steps
to make ...
5
votes
0answers
398 views
Part 2 Resilient backpropagation neural network
This is a follow-on question to this post. For a given neuron, I'm unclear as to how to take a partial derivative of its error and the partial derivative of it's weight.
Working from this web page, ...
-2
votes
1answer
62 views
Backpropagation alhorithm: where did I make mistake?
There is my implementation of BP alhorithm. I tested it and found incorrect data after training. So, where did I make mistake?
double OpenNNL::_changeWeightsByBP(double * trainingInputs, double ...
2
votes
5answers
437 views
Neural Network Backpropagation does not compute weights correctly
Currently, I am having problems with the Backpropagation algorithm.
I am trying to implement it and use it to recognize the direction of faces (left, right, down, straight).
Basically, I have N ...
1
vote
1answer
998 views
Why do sigmoid functions work in Neural Nets?
I have just started programming for Neural networks. I am currently working on understanding how a Backpropogation (BP) neural net works. While the algorithm for training in BP nets is quite ...
2
votes
2answers
371 views
Back propagation Error Function
I have a quick question regarding back propagation. I am looking at the following:
http://www4.rgu.ac.uk/files/chapter3%20-%20bp.pdf
In this paper it says calculate the error the neuron error as:
...
1
vote
2answers
2k views
Neural Network learning rate and batch weight update
I have programmed a Neural Network in Java and am now working on the backpropagation algorithm.
I've read that batch updates of the weights will cause a more stable gradient search instead of a ...
1
vote
0answers
261 views
how to parallalize a backpropagation algorithm [closed]
I have problems parallelizing this code, can you help me please parallelizing it?
Backpropagation is a method for computing how to adjust the values of the weight matrices so that output values are ...
0
votes
0answers
81 views
Backpropagation updates values erratically
I am trying to train an artificial neural network as an evaluation function of Connect 4 Boards in order to create an AI. My current strategy is to create training examples by having the program play ...
0
votes
1answer
144 views
parallelizing dynamic arrays
this is part of back-propagation algorithm code on neural networks.
in our case we want to parallelize the for( pt=0; pt< N_PT_pair; pt++) loop, the for(epoch=0; epoch< MaxEpoch; epoch++) can ...
1
vote
3answers
407 views
Tic Tac Toe Neural Network as Evaluation Function
I've been trying to program an AI for tic tac toe using a multilayer perceptron and backpropagation. My idea was to train the neural network to be an accurate evaluation function for board states, ...
1
vote
1answer
78 views
When to start using the selection set in a Back Propagation Neural Network?
Beginner on ANNs:
I am implementing a back propagation neural network to predict the price of gold. I know that I have to split my data into training data, selection data and test data.
However I ...
