Answered
How to create training data set for signature verification?
[ 7 120 ] = size(input) [ 12 120 ] = size(target) target columns are columns of eye(12) Hope this helps *Thank yo...

8 years ago | 1

| accepted

Answered
How to use Neural Network Error as a Feedback Input
THAT IS WHAT HAPPENS AUTOMATICALLY WHEN YOU TRAIN THE NET ! SEE THE FIGURE net = train(net,x,t) figure Hope this helps...

8 years ago | 0

Answered
I have some training data and some test data. Can anyone tell me is training data is the input data or it is desired data in wavelet neural network?
Correct notation: x input t target = desired output y output = net(x) e error = t - y % Reference output and MeanS...

8 years ago | 0

Answered
How to aviod creating a fully connected neural network in matlab?
The answer to your question is : Yes it is possible to do. HOWEVER, there is no MATLAB function available for doing so. ...

8 years ago | 0

Answered
What drives the memory usage in the Neural Network Toolbox?
N0 =158 samples define AT MOST, a N = 157-dimensional space. Therefore, if this is serious work and you have no more data,...

8 years ago | 1

Answered
How neural network output is calculated ?
If your outputs are constrained to [ 0, 1 ] use SOFTMAX If your outputs are constrained to [ -1, 1 ] use TANH Otherwise us...

8 years ago | 1

Answered
I have some training data and some test data. Can anyone tell me is training data is the input data or it is desired data in wavelet neural network?
Your description should be reformatted to prevent confusion. data = design + test design = training + validation dat...

8 years ago | 0

Answered
How to aviod creating a fully connected neural network in matlab?
The neural net for regression and curvefitting is FITNET (special case of feedforwardnet). For details see the documentation ...

8 years ago | 0

Answered
neural network based classification -signal processing
The correct function for neural network classification and pattern recognition is PATTERNNET. See the documentation via help...

8 years ago | 0

Answered
How neural network output is calculated ?
When you calculate the output of a net you have to take into account that values in the calculations are scaled, by default,...

8 years ago | 0

| accepted

Answered
The Understanding of the process of (Multi-step Forecasting using "NARX")
NARXNET requires an input. If you do not have a future input you can do the following 1. DESIGN 2 NARNETS: one for input and...

8 years ago | 0

| accepted

Answered
Neural Network initialization?
MATLAB will automatically initialize unweighted nets before training. MATLAB will continue to train a preweighted net Ther...

8 years ago | 0

Answered
Can I use parameters of different network training functions with each other?
You can answer your own question via trial and error. Greg

8 years ago | 0

Answered
How I can use rand('seed', ??) for neural network model?
Read the documentation in help rand and doc rand Hope this helps. *Thank you for formally accepting my answer*...

8 years ago | 0

Answered
How to use sigmoidal function in neural network?
In general 1. Transform inputs to [-1,1] 2. For regression/curvefitting a. Transform targets to [-1,1] b. Use th...

8 years ago | 0

Answered
Neural network accuracy improves on retraining without weight reinitialisation
A net with former weights will continue training from those weights. If you wish to reinitialize to get an alternate design u...

8 years ago | 0

| accepted

Answered
Neural network: train() behavior with earlier results
"Need to process" doesn't provide useful information. What are you trying to design? Curvefitter/Regressor? PatternRecognizer...

8 years ago | 0

Answered
Optimal hidden nodes number
BASIC MATLAB NN DESIGN ASSUMPTIONS The summary statistics of the Training, Validation and Test subsets are sat...

8 years ago | 0

Answered
Optimal hidden nodes number
I have posted hundreds of examples in both the NEWSGROUP (comp.soft-sys.matlab) and ANSWERS that determine the optimal number of...

8 years ago | 0

| accepted

Answered
Understand number of weights of Neural Network
You are THOROUGHLY CONFUSED! You do not understand MANY fundamental concepts. 1. [ trainednet, trainingrecord] = ...

8 years ago | 1

| accepted

Answered
Is it possible to change some properties of only a subset of units (neurons) in a hidden layer?
The best way to pursue this is to have multiple hidden layers IN PARALLEL, each connected between the input and output layers bu...

8 years ago | 0

Answered
How to implement cross validation in neural network for time series prediction
If you have to maintain the original spacing, one way to use f-fold XVAL in time series is illustrated below for f = 10 1. D...

8 years ago | 0

Answered
Train neural network on a single image set?
If you do not train with alternative inputs you will probably have too many false positives. Hope this helps *Thank you fo...

8 years ago | 0

Answered
How to get the percentage of image matching in neural network?
You train a net with inputs and corresponding targets. Now you want to know what to do if you use something different as an i...

8 years ago | 0

Answered
How to do incremental training using 2 batches of dataset, where the tool is anything except neural network
The new training will override the old. Therefore you have to either a. Add the old training set to the new one or b. ...

8 years ago | 1

| accepted

Answered
Is it okay to use this code for trained network forecasting in NARX?
If you want to forecast, use DIVIDEBLOCK. otherwise YOU ARE JUST INTERPOLATING, *Thank you for formally accepting my an...

8 years ago | 0

| accepted

Answered
how to predict from a trained neural network ?
1. Your code should yield an error because you have not defined y. here are two ways to define output y, error e and normaliz...

8 years ago | 0

| accepted

Answered
Help with isnan with two matrices of unequal dimensions
Separate the 2 searches. Hope this helps *Thank you for formally accepting my answer* Greg

8 years ago | 0

Answered
could anyboby help me to solve the error
i is undefined However if i were defined U(i) would probably be incorrect because U is 2 dimensional. You probably have to...

8 years ago | 0

| accepted

Load more