2
votes
2answers
33 views
How are neural networks used when the number of inputs could be variable?
All the examples I have seen of neural networks are for a fixed set of inputs which works good for images and fixed length data. How do you deal with variable length data such sen …
33
votes
14answers
1k views
What problems have you solved using artificial neural networks?
I'd like to know about specific problems you - the SO reader - have solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll you …
2
votes
3answers
45 views
How to change the default parameters for newfit() in MATLAB?
I am using
net = newfit(in,out,lag(j),{'tansig','tansig'});
to generate a new neural network. The default value of the number of validation checks is 6.
I am training a lot o …
3
votes
4answers
123 views
Help with Perceptron
Here is my perceptron implementation in ANSI C:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
float randomFloat()
{
srand(time(NULL));
float …
1
vote
2answers
58 views
Relationship discovery using Neural networks.
Hi
Suppose I am sampling a number of signals at a fixed rate (say once per second) and extracting some metrics from the signals such as, ratio of one to the other, the rate of chan …
2
votes
1answer
92 views
How to set output size in Matlab newff method
Hi.
Summary:
I'm trying to do classification of some images depending on the angles between body parts.
I assume that human body consists of 10 parts(as rectangles) and find th …
3
votes
1answer
77 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 t …
1
vote
1answer
55 views
How to format data for use in nntool (MATLAB)?
In nntool, the sample data is formatted as: [0 1 -1; 2 3 1]
I have ~8000 data points in a text file.
How do I format those points for use here? What does the semicolon signify?
5
votes
5answers
165 views
Algorithms to find stuff a user would like based on other users likes
I'm thinking of writing an app to classify movies in an HTPC based on what the family members like.
I don't know statistics or AI, but the stuff here looks very juicy. I wouldn't …
1
vote
4answers
98 views
Open-source .NET neural network library?
Can anyone recommend a good open-source .NET neural network library?
Thanks!
0
votes
4answers
40 views
Finding weather data to use for training a neural network
I'm looking for some downloadable weather data i can use to train a neural network to do forecasting, where can i find some? Basically things like temperature, humidity, wind speed …
4
votes
4answers
101 views
How to use neural networks to solve “soft” solutions?
I'm considering using a neural network to power my enemies in a space shooter game i'm building and i'm wondering; how do you train neural networks when there is no one definitive …
4
votes
3answers
110 views
Neural Network “Breeding”
I just watched a Google tech talk video covering "Polyworld" (found here) and they talk about breeding two neural networks together to form offspring. My question is, how would on …
9
votes
8answers
462 views
When to use Genetic Algorithms and when to use Neural Networks?
Is there a rule of thumb or set of examples to determine when Genetic Algorithms versus when to use Neural Networks to solve a problem?
I know there are cases in which you can hav …
2
votes
5answers
158 views
Can an artificial neural network predict the outcome of sports games?
I was trying to find something original and fun to do with artificial neural networks (ANNs) as a personal/learning project and I though it would be cool if I could predict the res …
