Network structure inspired by simplified models of biological neurons (brain cells). Neural networks are trained to "learn" by supervised and unsupervised techniques, and can be used to solve optimization problems, approximation problems, classify patterns, and combinations thereof.
0
votes
0answers
5 views
FANN for function approximation
I need some help with learning a neural network using FANNTool (automatical parameters setting) with a given data file, which can be found here: http://goo.gl/mV34T. This data was generated with a ...
0
votes
0answers
31 views
Issue with gradient calculation in a Neural Network (local minima at 10%)
Hi I am having an issue with my calculation of checking the gradient when implementing a neural network in python using numpy.
I am using mnist dataset to try and trying to using mini-batch gradient ...
0
votes
0answers
4 views
Elman and Jordan context values during training for neural network
I am experimenting with Elman and/or Jordan ANN's using the Encog framework. I am trying to code my own but studying how Encog has it implemented. I see how the backpropagation through time updates ...
0
votes
0answers
13 views
Fill gaps in sequence of numbers with weka
I have already asked the same questions in another seqtion. Here it is python
But, I made the same question because I think to use another software. When I was trying to find a solution for my ...
1
vote
2answers
16 views
Encog AI Framework: Backpropagation with Gaussian Noise Injection
I have been tinkering with standard Multi-Layer Perceptrons and the Backpropagation algorithm in Encog for two weeks now, both via workbench and via Java code. My next job will require inserting noise ...
-5
votes
0answers
34 views
Neural Network Player against Random Player [closed]
I'm designing a checkers game. A player using a neural network will play against another player which plays randomly.
If player which use neural network makes a move and if the game ends, neural ...
0
votes
1answer
27 views
Convert PMML - Model (Artificial Neural Network) to Java Code
I have a PMML file of a trained Artificial Neural Network (ANN). I would like to create a Java method which simply takes in the inputs and returns the targeted value.
This seems pretty easy, but I do ...
-1
votes
0answers
53 views
Python implementation of multilayer perceptron does not learn XOR [closed]
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 ...
-1
votes
0answers
15 views
Unsupervised Network (SOM) for Clustering
Can someone tell me what I have to do in this. I'm new to matlab. I have to do this using Matlab.
Generate random real numbers within the four given ranges for your Group using the rand function and ...
-5
votes
0answers
44 views
Neural Network to predict currency - Python [closed]
From matlab, it's possible to predict currency exchange rate as such: http://library.wolfram.com/examples/exchangerate/
How do I use python neural network libraries like pybrain ...
-2
votes
0answers
38 views
Neural network Libraries for python 3? [closed]
Are there any good neural network libraries for python 3? I was looking at PyBrain, but it doesn't seem to be compatible with the 3.x series. Any suggestions? Remember Python 3!
1
vote
0answers
41 views
fill missing values of sequence with neural networks
I want to make a little project and I want to use neural networks with python. I found that pybrain is the best solution. But until now, all the examples and questions I have found, cannot help me.
I ...
-2
votes
0answers
20 views
How to implement ANFIS in OpenCV? [closed]
I am new to machine learning....looking for some guidance. Could somebody please suggest me/link/idea on how to implement ANFIS in opencv? Is there any built-in learning scheme for this in OpenCV? I ...
-1
votes
0answers
23 views
Nonlinear regression with neural network [closed]
I would like to share with you how I approached a nonlinear regression problem (2 inputs, one output) in Matlab, and have your advice.
After some quick readings I settled for a network with one ...
0
votes
0answers
10 views
Encog Hopfield network training
I am trying to recognize a single character from an image.
The image data has been cleaned and has a clear distinct letter visible.
So when I add the trainigset to the hopfield network, it goed ...
1
vote
1answer
34 views
Neural Network seems to work fine until used for processing data (all of the results are practically the same)
I have recently implemented a typical 3 layer neural network (input -> hidden -> output) and I'm using the sigmoid function for activation. So far, the host program has 3 modes:
Creation, which ...
0
votes
0answers
18 views
Understanding Kohonen SOM visualisation
I am trying to understand (and implement) how to visualize nodes in SOM. If I train it on some high-dimensional data, the only thing i can do is calculate distance between nodes in high dimensional ...
0
votes
1answer
40 views
R neuralnet does not converge within stepmax for time series
everyone
I'm writing a neural network for prediction of elements in a time series x + sin(x^2) in R, using the neuralnet package. This is how training data is being generated, assuming a window of 4 ...
0
votes
0answers
38 views
Neural network k-fold crossvalidation matlab
my goal is to create 2 things
a simple NN trained with the patternet algorith
apply k fold cross validation
obtain the average result of all the "k-subnetworks" created
***1st step: i wanna train ...
0
votes
1answer
25 views
Neural Network bias
I'm building a feed forward neural network, and I'm trying to decide how to implement the bias. I'm not sure about two things:
1) Is there any downside to implementing the bias as a trait of the node ...
0
votes
1answer
25 views
Genetic algorithms: fitness function not working properly
I have a binary dataset of (m x n) m instances and n features with m >> n. And there is a target Variable or Class attribute, also binary. I want to do feature selection using genetic algorithm. I ...
0
votes
0answers
13 views
Evolve neural network for opponents in Ms. Pacman
I am working on a project where I am creating an AI opponent in Ms. Pacman. To simplicity, I put just one Ghost in project, that try to catch Ms. Pacman.
for developing, I use neural network and ...
0
votes
1answer
31 views
In neural networks, does a bias change the threshold of an activation function?
I have read some other question (and related answers) about this, but I still have a doubt : adding a bias to a threshold activation function, will change the threshold? As far as I know, adding a ...
2
votes
0answers
65 views
Why is neural network not predicting?
I am trying to train a neural network using backpropagation algo. in OpenCV 2.3.
However it is not predicting correctly....not even on training dataset. Could anybody please help me find whats wrong ...
0
votes
1answer
43 views
How to use Cross-Validation in OpenCV?
Can somebody please tell me how to employ cross-validation in OpenCV? I am working with Neural Networks module in OpenCV and there is no in-built option for cross-validation as in the case of Decision ...
0
votes
1answer
18 views
Neural Network Output
I'm working on a dataset that states whether one is positive or negative of diabetes. If in my data set, the number of observations negative of diabetes is 10 times greater than those of my ...
-2
votes
1answer
52 views
How to prepare input for time delay neural network in Python? [closed]
Task 1)
Let X = [x_0, x_2, ..., x_t] be a numpy.array, how do you take pieces of X and create a new list addressing indexes, say for example: Y = [[x_1, ... ,x_(n-1)], [x_n, ..., x_(2n-1)], ...
0
votes
1answer
17 views
Visualization of filters in convolution neural networks
I read this article "ufldf", it evolves visualization of hidden layers in autoencoder, but I'm confused how to visualize filters for a convolution neural networks. In my opinion, for the first ...
-1
votes
1answer
33 views
What does the value of the gradient during NN training signify? [closed]
The by default value for the gradient descent approach is 1e-5.
Is this a very small value for generalization to a testing set? What range should I keep it in?
Does the gradient signify the error ...
0
votes
0answers
57 views
My 2 layer neural network gets only 2.05% test error rate on MNIST. Too low to be correct?
Is it at all reasonable to get this low of a test error rate? I doubt it, because the test error rates listed on the MNIST database website are higher than this, but the evidence otherwise seems ...
0
votes
0answers
34 views
Compilation error when importing Theano on Windows 7
I'm trying to use Theano on Windows 7. I was able to install Theano and import Theano, but after seeing the warning about not having a C compiler installed I also installed mingw. Now when I try ...
0
votes
1answer
49 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 ...
-3
votes
0answers
20 views
Recommended computer configuration for testing neural networks [closed]
I am starting with developing neural networks to solve problems, I have a very old PC with Intel Dual core E5300 processor, 2 GB 800 MHz ram and an Asus P5KPL-AM/PS motherboard. I read all around on ...
1
vote
0answers
49 views
Is there a way to set up a multi-hidden layer neural network with the mlp method in the caret package?
The mlp method in package caret calls the mlp function in RSNNS. In the RSNNS package, I can set up as many hidden layers in the neural net as I like by setting the size parameter, e.g.
data(iris)
...
0
votes
0answers
29 views
what are the java libraries I can use to classify text [duplicate]
I have a text file which contains about 5000 SMS messages (spam, non-spam).
(this is available at http://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection# )
I want to use this dataset to build a ...
0
votes
0answers
28 views
MATLAB neural net reconstructed/exported (to use in java or c++)
i am trying to use parameters trained with the neural net toolbox in my own program.
i am aware that toolbox makes additional steps in preprocessing. how exactly?
i have a neural net with 4 hidden ...
0
votes
1answer
22 views
What kind can be the function of artificial neurone?
I almost have the whole thing structured in my head but I want to just confirm it.
We have a neural network with 3 layers.
We input the Xs and their weights Ws (We choose the Ws on random at the ...
-1
votes
0answers
32 views
Handwritten text recognition using NN in C++ [closed]
I would like to create a NN that has a scanned handwritten document as input and a digital version of it as output. I know the basics of MLP NNs and the only programming languages I know are C++ and ...
0
votes
1answer
77 views
Text classification with neural network
Can someone tell me how can I classify some text messages using neural network.?
Is there any examples? how do I preprocess text messages to train the neural network?
Thanks
0
votes
1answer
49 views
Target values for neural network
I've been using MATLAB's neural network toolbox to generate good for character recognition. I wanted to develop my own to compare against and also try and use different methods for weight updates. ...
-3
votes
0answers
49 views
Neural Network for Image Recognization
I am looking for a Neural Net Design suggestion for the following problem statement:-
-There is a bottle in the room.I take the image from a high resolution camera and i need to identify if the bottle ...
0
votes
0answers
23 views
Want to ask about designing neural network that accept hexadecimal patterns using JOONE
Design a neural network that accept hexadecimal patterns (from 000 to FFF) and form 3 clusters as:
Patterns that end with a number in the input. (0-9) (eg. A02)
Patterns that end with either a ...
0
votes
1answer
10 views
Adjust data vector to have certain variance
I have a set of integers x, 0<=x<=255
I need to transform this data in that way that :
Average of values in set == 0
Variance == 1
I can meet first condition with:
array arr[];
av = ...
1
vote
1answer
43 views
Neural Networks in Matlab. Adding large learning patterns
I am new to matlab and I can't find a solution to my problem...
What is the problem?
I have to create a neural network using matlab that will have almost 25k inputs and 10 outputs. There is also ...
-3
votes
1answer
27 views
Neural Network to Classify Images [closed]
I want to train a neural network so that it can classify whether a image contains text or not.
Can someone guide me on this??
Edit:
I researched on few models and trained them too but was not ...
0
votes
0answers
25 views
any ideas for neural network projects? [closed]
I am a computer science student.
I want some new ideas for final year project in neural network.
The ideas which I have come across till now are:
1.Intrusion detection system using NN.
2.Fraud ...
0
votes
0answers
63 views
How to correlate (X,Y) coordinate pairs in one meaningful unit
I have a 2D Array, where each row is a feature vector.
Each feature vector is like: [x1 y1 x2 y2 x3 y3 x4 y4] where, (x1,y1) are coordinates of first feature point, (x2, y2) of second feature point ...
0
votes
1answer
48 views
How to use created “net” neural network object for prediction?
I used ntstool to create NAR (nonlinear Autoregressive) net object, by training on a 1x1247 input vector. (daily stock price for 6 years)
I have finished all the steps and saved the resulting net ...
0
votes
1answer
45 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 ...
1
vote
1answer
115 views
NeuQuant.js (JavaScript color quantization) hidden bug in JS conversion
NeuQuant.js works well when the image width and height are a multiple of 100:
300x300
Otherwise, there is obviously a bug:
299x300
(These were made with this web app.)
I'm 90% sure that the bug ...




