This refers to techniques for configuring the structure and parameters of neural network parameters.

learn more… | top users | synonyms

1
vote
1answer
27 views

Multi threaded AForge.NET training

I am using AForge.NET ANN and training it on my training set. Because the training is single threaded and the process can take ages, I wondered if it's possible to run a multi threaded training. ...
1
vote
1answer
111 views

Neural network, is it worth changing learning rate and momentum over time

Is it worth to change learning rate after certain conditions are met? And how and why to do it? For example net will start with high learning rate and after squared error is low enough learning rate ...
0
votes
0answers
59 views

Continuously train MATLAB ANN, i.e. online training?

I would like to ask for ideas what options there is for training a MATLAB ANN (artificial neural network) continuously, i.e. not having a pre-prepared training set? The idea is to have an "online" ...
0
votes
1answer
87 views

How to extend upper and lower limits of ANFIS membership function in MATLAB?

I am trying to implement ANFIS on MATLAB. My input data operating range is 0-180, but MATLAB generates ANFIS membership function limits within 0-10. How to extend it from 0 to 180? Also another ...
2
votes
0answers
47 views

Training a neural network with constrained units

Motivation: The state of the art algorithm for object recognition is a deep convolutional neural net trained through backpropagation, where the main problem is getting the network to settle in a ...
1
vote
3answers
240 views

neural network training set

My question is about a training set in a supervised artificial neural network (ANN) Training set, as some of you probably know, consists of pairs (input, desired output) Training phase itself is the ...
0
votes
0answers
49 views

Levenverg-Marquardt training - speed of convergence

I have finally got LMA working. XOR problem is solved in about 10 iterations with great precission (from time to time, LMA not convert properly, than I restart initial weight seed). But now I want to ...
0
votes
1answer
57 views

Neural Network for Phishing detection , features to be extracted from URL and contents to pass as input

This is in continuation with my Previous question We successfully extracted the URL and contents from a website which we are supposed to check for phish . Now we have a database of whitelist and ...
0
votes
1answer
294 views

Neural network for multiple input and multi output (MIMO) systems

I want to build a neural network for a multi input and multi output (MIMO) system described as: y1(t)= f1( x1(t), x2(t),...xn(t)) y2(t)= f2( x1(t), x2(t),...xn(t)) ..... ..... ym(t)= fm( x1(t), ...
0
votes
0answers
47 views

why weight vectors are orthogonal to decision plane in neural network

I really want to know while learning why weight vectors( W ) are orthogonal to decision plane( W'p + b ) where p is input vector , ' signifies transpose , b is bias have searched a lot and ...
2
votes
2answers
83 views

Artificial Neural Network that creates it's own connections

I've been reading about feed forward Artificial Neural Networks (ANN), and normally they need training to modify their weights in order to achieve the desired output. They will also always produce ...
0
votes
0answers
112 views

What, in laymans, is the 'threshold' in a Neural Network? [closed]

Before I start, I apologise for my ignorance. In general really, but in my case for the R package neuralnet, what is the 'threshold' value specified a representation of? I know that it's the a ...
1
vote
3answers
64 views

Is there a rule/good advice on how big a artificial neural network should be?

My last lecture on ANN's was a while ago but I'm currently facing a project where I would want to use one. So, the basics - like what type (a mutli-layer feedforward network), trained by an ...
0
votes
2answers
144 views

Troubleshooting Image Recognition Neural Network Issues

Thanks in advance for reading this. So I'm attempting to write a neural network for recognizing a specific logo within an image. I basically have a sliding window of a specific aspect ratio that will ...
4
votes
2answers
276 views

Weight Initialisation

I plan to use the Nguyen-Widrow Algorithm for an NN with multiple hidden layers. While researching, I found a lot of ambiguities and I wish to clarify them. The following is pseudo code for the ...
0
votes
1answer
151 views

Can you use multiple output layers in a neural network without using softmax?

I'm working on implementing a neural network for a class project and I was just wondering if it is possible to do multiclass classification with a neural network without using softmax? When I asked ...
1
vote
1answer
110 views

Neural Network Becomes Unruly with Large Layers

This is a higher-level question about the performance of a neural network. The issue I'm having is that with larger numbers of neurons per layer, the network has frequent rounds of complete stupidity. ...
1
vote
1answer
413 views

Q-Learning in combination with neural-networks (rewarding understanding)

As far as my understanding is, it's possible to replace a look-up-table for Q-values (state-action-pair-evaluation) by a neural network for estimating these state-action pairs. I programmed a small ...
0
votes
1answer
112 views

What is the rule-of-thumb relation between sample size and feature vector dimension?

It is generally known that larger the no. of features making a up a feature vector, the more number of samples are needed to train a classifier. In my case, I'm using a backpropagation multi-layer ...
0
votes
2answers
219 views

Neural Network For a Non-Linear Function

I am trying to find an appropriate neural network structure to learn a function of the following form: F(x1,x2,x3,x4,x5)= a*x1+b*(x2-x4)/(x3-x4) + c*x5. I am using the matlab's neural network ...
0
votes
1answer
184 views

Neural network not training enough well

I read an idea for a project in the book "Introduction to Machine Learning" by Tom Mitchell. The project is about determining the direction of the face (left, right, down, straight). I use my own ...
0
votes
1answer
270 views

more accuracy in neural network result with matlab

ITNOA Hello all, I tried to use a neural network to predict some data. I used Matlab neural network fitting toolbox and i could predict some tests. but the problem is the accuracy is not good enough ...
-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 ...
3
votes
1answer
302 views

Neural Network Initialization - Nguyen Widrow Implementation?

I've had a go at implementing the Nguyen Widrow algorithm (below) and it appears to function correctly, but I have some follow-on questions: Does this look like a correct implementation? Does Nguyen ...
0
votes
1answer
189 views

MATLAB - gradient in neural network starting from NaN?

I was trying to use the neural network tool in MATLAB 2011. I have come across a very weird problem. I just used the GUI of the neural network to feed my inputs and everything. My gradient of ...
0
votes
0answers
153 views

neural networks with large datasets (~2000) failed [closed]

Im trying to play abit with neurloab and test some situations. as example ill try to predict one letter on other letter - each letter is coded as o...1...0 array, so input has 26 0..1 values . and ...
0
votes
1answer
321 views

minimum iterations neural network needs for XOR

what's the minimum number of exposures to the training set that a standard backprop needs to solve the xor problem? does another type of neural net solve it faster? what's the best setup (number of ...
6
votes
3answers
836 views

Neural Network to recognize accelerometer pattern

I'm building an application for Android devices that requires it to recognize, by accelerometer data, the difference between walking noise and double tapping it. I'm trying to solve this problem using ...
2
votes
0answers
247 views

FANN under Python is acting strangely. Is this because I'm using it wrong, or because of the limitations of the tool?

I have a number of records where I am trying to predict one field based on other fields. I set up a FANN neural net under Python, with ~10 inputs, 100 hidden nodes, and 2 outputs. When I went to ...
1
vote
0answers
50 views

Where do I find the latest fann lib release?

I found the latest fann (Fast Artificial Neural Network Library) documentation here: http://leenissen.dk/fann/html_latest/files2/gettingstarted-txt.html I need to use the new Self-Organizing Maps ...
2
votes
1answer
105 views

Feature scalling/normalization with sparse data

I am having a problem with training a neural network with sparse input data to solve a supervised regression problem. When I perform mean normalization (subtract mean then divide standard deviation) ...
1
vote
0answers
185 views

Pybrain implementation throwing error

I am trying to generate a grid for my dataset of 10 dimensions, while doing so I am following the code from http://pybrain.org/docs/tutorial/fnn.html. The code which I am implementing and throwing ...
1
vote
2answers
409 views

Why is weight vector orthogonal to decision plane in neural networks

I am beginner in neural networks. I am learning about perceptrons. My question is Why is weight vector perpendicular to decision boundary(Hyperplane)? I referred many books but all are mentioning that ...
1
vote
1answer
150 views

How to estimate the amount of RAM it will take Encog to train a particular network with a particular sample set with Levenberg-Marquardt algorithm?

I am studying Encog (versions 3.0 and 3.1 for Java) neural network framework and would like to try Levenberg–Marquardt algorithm in my neural network training. However my actual neural networks are ...
2
votes
2answers
99 views

Neural net training continuos values

As so many papers describes about that NN can predict stock return I also started looking into this method. I am not able to train NN precisly, my prediction does not match even on the training ...
4
votes
2answers
593 views

Can someone explain Artificial Neural Networks? [closed]

According to Wikipedia (which is a bad source, I know) A neural network is comprised of An input layer of A neurons Multiple (B) Hidden layers each comprised of C neurons. An output layer of "D" ...
1
vote
1answer
187 views

represent node in neural network?

How does one represent nodes in a 2-D neural network? In self-organizing neural networks(Kohonen map) how is weight of node related to co-ordinate in 2D network. Does the map self-organize based on ...
0
votes
2answers
90 views

What are the best ways to get rid of unimportant input neurons?

I have a well trained neural network consisting of about 40 input neurons and letting me classify some items by patterns. Each neuron receives some separate input parameter value. I'm pretty sure that ...
0
votes
1answer
102 views

What is better to fed into ANN for OCR: character's border or character's 'filling'?

I am having hard time deciding what is better (in terms of performance) to fed into ANN for OCR purposes. I have found rectangular areas which contain characters and now I would like to know what is ...
0
votes
1answer
207 views

Recommendations for artificial neural network simulation basic software

I have a single threshold unit truth table to simulate for 100 epochs, with my input of the learning curve, target, activation, bias and weight to detect errors. Is there some software which can do ...
0
votes
1answer
364 views

Neural network not converging

I'm new to Neural Networks, and programming generally. I've written a neural network in java, and i'm looking at football data. I have two inputs: 1) Home team win % over n games 2) Away team win % ...
4
votes
1answer
466 views

neural network pattern recognition in matlab

How do i go about to create and train a simple neural network in order to recognise patterns? Does anybody have sample codes to guide me through or someone points to a direction?
2
votes
2answers
243 views

Neural Network Learning Without Training Values

I am wondering how to go about training a neural network without providing it with training values. My premise for this is that the neural network(s) will be used on a robot that can receive ...
0
votes
1answer
91 views

Video Annotation for Neural Network Training

I want to train a neural network to recognize some objects in video based on their shape, color, etc. In order to train my NN, I want to have it run against some training video (MP4s that I filmed) so ...
1
vote
1answer
178 views

Neural network weights adjustment by the user ratings

im really new to NN, and im trying to implement it in my recommendation system that gives users recommendations on user similarities. The thing is that im having 4 different similarities of users by ...
0
votes
1answer
494 views

supervised training of SOM in MATLAB

I have a labelled data set, each data entry is of six dimensional. Each data entry is pre-labelled as belonging to one of 10 clusters. I would like to train a SOM to fit this labelled data set. In ...
2
votes
1answer
144 views

Optimal Feature-to-Instance Ratio in Back Propagation Neural Network

I'm trying to perform leave-one-out cross validation for modelling a particular problem using Back Propagation Neural Network. I have 8 features in my training data and 20 instances. I'm trying to ...
2
votes
1answer
881 views

Need help setting Neural Network parameters (learning rate, momentum, hidden layer size…)

I have a standard feedforward backpropagation neural network that i would like to train to be able to recognize a blue ball. I have 30 images 20 of the ball and 10 without and my first question is ...
1
vote
1answer
165 views

Sources on evolutionary programming? (Neuro-evolution)

I'm writing a thesis on the application of evolutionary programming to neural networks. I already found this question, which was helpful: What are some good resources for learning about Neural ...
1
vote
1answer
33 views

Which Weights will be used for predictio the future response

Assalam o Laqum I am doing work on time series data prediction. The input signal is the daily concentration of dust particles in the air and having format (10x24), 10 =days and for each day 24 ...

1 2