Respondida
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...

casi 8 años hace | 1

| aceptada

Respondida
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...

casi 8 años hace | 0

Respondida
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...

casi 8 años hace | 0

Respondida
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. ...

casi 8 años hace | 0

Respondida
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,...

casi 8 años hace | 1

Respondida
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...

casi 8 años hace | 1

Respondida
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...

casi 8 años hace | 0

Respondida
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 ...

casi 8 años hace | 0

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

casi 8 años hace | 0

Respondida
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,...

alrededor de 8 años hace | 0

| aceptada

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

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

alrededor de 8 años hace | 0

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

alrededor de 8 años hace | 0

Respondida
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*...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

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

alrededor de 8 años hace | 0

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

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

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

alrededor de 8 años hace | 1

| aceptada

Respondida
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...

alrededor de 8 años hace | 0

Respondida
how can i predict one week later(multistep prediction), this code just predicts one step in the future please make my code right(it's about wind speed prediction with 3 input parameter(pressure, humidity, temperature) and one target(wind speed)
Insuficient info; HOW LONG IS ONE DELAY ... 1 second? 1 minute? 1 hour? 1 day?... although you can recursively predict ...

alrededor de 8 años hace | 0

| aceptada

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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. ...

alrededor de 8 años hace | 1

| aceptada

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

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

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

Cargar más