neural-network

Using k-fold cross validation in a neural network

Hi, I'm attempting to implement k-fold cross validation in an functional neural network. The training process is online, and I'm using k=10 for my initial testing. My question is: what is the best way to use the errors to figure out when to stop training? I compute the root mean squared error for each particular training instance (whic...

Help me with my backprop implementation in Python

EDIT2: New training set... Inputs: [ [0.0, 0.0], [0.0, 1.0], [0.0, 2.0], [0.0, 3.0], [0.0, 4.0], [1.0, 0.0], [1.0, 1.0], [1.0, 2.0], [1.0, 3.0], [1.0, 4.0], [2.0, 0.0], [2.0, 1.0], [2.0, 2.0], [2.0, 3.0], [2.0, 4.0], [3.0, 0.0], [3.0, 1.0], [3.0, 2.0], [3.0, 3.0], [3.0, 4.0], [4.0, 0.0], [4.0,...

Propery Setting Up Neural Network for Location to Location Analysis

I am attempting to train a neural network for a system that can be thought of as a macro-level postal network. My inputs are two locations (one of the 50 US states) along with 1 to 3 other variables, and I want a numeric result out. My first inclination was to represent the states as a numeric value from 0-49 and then then have a networ...

How to store data from MATLAB to Access DB?

I want to store my results from neural network in MATLAB to Access database, and also store video with it to the same database. For other time when everyone result the same pic from neural network the output for him is video that was stored before in DB... Can you help me? ...