Respondida
How to calculate prediction interval of ANN?
Assuming you mean a NARXNET, there is no analytic formula. It depends on the significant cross-correlations of the input and ...

más de 9 años hace | 1

| aceptada

Respondida
how to plot MSE while using newpnn
NEWPNN is a classifier which does not involve training. See help newpnn doc newpnn type newpnn Hope this helps. ...

más de 9 años hace | 0

| aceptada

Respondida
Can spread value in the newpnn code be a vector?
The spread must be scalar.

más de 9 años hace | 0

| aceptada

Respondida
Neural Network Regeneration Based on Result Weight and Bias
You didn't take into account the default normalization of inputs and targets followed by the denormalization of the output. H...

más de 9 años hace | 1

| aceptada

Respondida
Multistep ahead prediction using NARX/NAR?
The ph_dataset is not a good example. Choose one of the others from help nndatasets doc nndatasets Hope this helps. ...

más de 9 años hace | 0

Respondida
How can I use neural network function generated by Matlab?( I use R2015a)
As stated above, the timeseries is not stationary. See http://www.mathworks.com/matlabcentral/answers/302908-narxnet-with-mu...

más de 9 años hace | 0

Respondida
ALWAYS SAME RESULT WITH NEURAL NETWORK SCRIPT
The only way for this to happen with 2014a is for the RNG to be initialized to the same state at the beginning. Hope this hel...

más de 9 años hace | 1

Respondida
GRNN/PNN vs RBF
NEWRB can be used for both REGRESSION and CLASSIFICATION (I have done both zillions of times). I cannot think of any case whe...

más de 9 años hace | 0

Respondida
Error: Undefined operator '-' for input arguments of type 'cell'.
Cut and paste into the command line a = 10, b=5 A = num2cell(a) B = num2cell(b) c = b-a C = gsubtract(B,A) C = B-A ...

más de 9 años hace | 1

Respondida
How can I determine if I need a time series or a fitting neural network?
For a timeseries function points at neighboring times are highly correlated so that the autocorrelation function is nonrandom an...

más de 9 años hace | 0

| aceptada

Respondida
Neural Network for predictions. How to improve it
You seem to be wasting a lot of time and space writing code that is unnecessary because you do not rely on defaults. My experien...

más de 9 años hace | 1

| aceptada

Respondida
Small data train ANN
Use k-fold Cross validation for a range of k values and multiple random initial weights for each value of k.. *Thank you fo...

más de 9 años hace | 0

| aceptada

Respondida
About neural net fitting (at neural network toolkit)
IW = net.IW B = net.B LW = net.LW *Thank you for formally accepting my answer* Greg

más de 9 años hace | 0

| aceptada

Respondida
Calculate velocity and acceleration in each time step in neural network
You are implicitly assuming that the summary statistics of the second half are the same as those of the first half. Why not p...

más de 9 años hace | 0

Respondida
whether the number of nodes in the pattern layer (which is equal to the the number of input samples) in the General Regression Neural network architecture causes over fitting of the model?
OVERFITTING is when the number of unknown weights, Nw, exceeds the number of training equations, Ntrneq. For N pairs of I-dimens...

más de 9 años hace | 0

Respondida
Feed forward NN is taking much time with my current dataset and output is not matching with target
With "I"nput and "O"utput target matrices with sizes [ I N ] = size(input) [ O N ] = size(target) Remove rows from BOTH...

más de 9 años hace | 0

| aceptada

Respondida
Getting NaN values in neural network weight matrices
Remove all input and corresponding output vectors if EITHER OR BOTH contain NaNs. Hope this helps *Thank you for formally ...

más de 9 años hace | 1

| aceptada

Respondida
GRNN/PNN vs RBF
I do not recall any significant difference between NEWPNN, NEWGRNN & NEWRBE They can ALL be replaced by the more flexible ...

más de 9 años hace | 0

Respondida
Generalization in the ANN
> Can we conclude that the larger network learnt too much from the examples given during the training, thus loosing the capabi...

más de 9 años hace | 0

Respondida
Feed forward NN is taking much time with my current dataset and output is not matching with target
The next time think twice before posting, WITHOUT WARNING, a MEGABYTE data set with NaNs and zero variance rows.

más de 9 años hace | 0

Respondida
Accuracy of neural network in k fold cross validation
Typically, the test subset error rate is the only one that is considered to be UNBIASED because it is not directly involved in d...

más de 9 años hace | 0

| aceptada

Respondida
Neural Networks Test set
0.7/0.15/0.15 train/val/test random datadivision is a design default which can be overwritten via one of the alternates. See...

más de 9 años hace | 0

Respondida
How to improve the performance (error) of my neural network?
Typically, initial weights and trn/val/tst datadivision are random and it is not known, apriori, how many hidden nodes are optim...

más de 9 años hace | 0

Respondida
Fitting a Function with trainlm to find function parameters?
Think of a neural net as a mapping between I-dimensional "I"nputs and O-dimensional "O"utputs achieved by using N pairs of I-dim...

más de 9 años hace | 0

Respondida
Best traing performance value?
You are putting the emphasis on the wrong thing. The performance estimate of the training subset is highly biased because yo...

más de 9 años hace | 0

| aceptada

Respondida
MLP Neural network and k-fold cross validation
No. Your code is not correct. You have chosen a HIGH-DIMENSIONAL-CLASSIFICATION DATASET for which that version of my code is inn...

más de 9 años hace | 0

| aceptada

Respondida
One-Class classifier using Neural Network
Use an RBF or EBF net. Generate points in between and outside of the clusters obtained from the original data. Train the net...

más de 9 años hace | 0

| aceptada

Respondida
How to save the result of the training weigths in a matlab neural network (e.g. NARX)
When training in a loop the weights at the beginning of non-initial loops are AUTOMATICALLY the same as the weights at the end o...

más de 9 años hace | 0

| aceptada

Respondida
How can I use the Genetic Algorithm (GA) to train a Neural Network with inputs matrix [12 x 100] and targets [1 x 100]?
None of the GA NN posts yields a good answer. In addition, they are orders of magnitude slower than backprop. Search both NEWGRO...

más de 9 años hace | 0

| aceptada

Respondida
Neural Networks - Break down of training, testing and validation groups
The bottom line is that TRAINBR has at least one bug w.r.t. datadivision. trainbr bug http://www.mathworks.com/matlabcen...

más de 9 años hace | 1

Cargar más