Respondida
What does Xs matrix in time delay network contain?
If your input vector is X, the input delay vector of nonnegative ordered integers is ID, and d = max(ID) then Xs = ...

alrededor de 12 años hace | 1

| aceptada

Respondida
Can any body help me to write electricity price forecasting model in neutral network?
help narxnet doc narxnet Search the NEWSGROUP and ANSWERS using narxnet greg narxnet Practice on MATLAB datasets...

alrededor de 12 años hace | 1

| aceptada

Respondida
using neural network (NARX) to do prediction
I have posted many solutions to narxnet problems. Search the NEWSGROUP and ANSWERS using greg narxnet and greg closel...

alrededor de 12 años hace | 0

| aceptada

Respondida
Problem with exact replication of maglev narx closed-loop output
Closed loop designs have the irritating property of propagating errors. Typically, just closing an openloop design is not suf...

alrededor de 12 años hace | 0

Respondida
Run/Display Neural Network on Test data after training
The command view(net) just yields a picture of the net. If you want to view results either print them out or plot them. If...

alrededor de 12 años hace | 1

| aceptada

Respondida
Predict futures values in ntstool (NAR)
1. The best way to get help is to run your code on the command line with one of the MATLAB example data sets. See help na...

alrededor de 12 años hace | 0

| aceptada

Respondida
How to determine the neuron in LVQ
[ I N ] = size(input) % [15 60] [ O N ] = size(target) % [ 3 60 ] For lvqnet net.divideFcn = ''. Therefore, Ntrn = N ...

alrededor de 12 años hace | 1

| aceptada

Respondida
Weight initialization in patternnet
Validation data cannot be separated from training data total = design + test design = train + validate The validation s...

más de 12 años hace | 1

Respondida
Increasing the number of epochs to reach the performance goal
[ I N ] = size(input) % [ 85 130 ] [ O N ] = size(output) % [ 26 130 ] Ntrn = N - 2*round(0.15*N)% 90 Ntrneq = Ntrn*O...

más de 12 años hace | 1

| aceptada

Respondida
Weight initialization in patternnet
Search using greg cross validation Read 29 Sep 2013 NEURAL NET CROSSVALIDATION DESIGN EXAMPLE Greg Heath neural networ...

más de 12 años hace | 1

| aceptada

Respondida
problem in using inverse tansig in place of tansig in neural network
I am confused z = tansig(x) = tanh(x) = ( exp(x)-exp(-x) ) / ( exp(x) + exp(-x) ) x = atanh(z) = 0.5 * log( (1 + z) / ( ...

más de 12 años hace | 1

| aceptada

Respondida
how does neural network respond for 2 inputs in simulink?
I don't know which neural network you are using. Typically training occurs with N pairs of I-dimensional input vectors and cor...

más de 12 años hace | 0

| aceptada

Respondida
How to use learning functions of neural network toolbox ?
According to both help learnh and doc learnh dW = learnh([],P,[],[],A,[],[],[],[],[],LP,[]) calculates dW ...

más de 12 años hace | 0

| aceptada

Respondida
Specify input for NARX
Inputs are assumed to be matrices containing N I-dimensional vectors corresponding to N O-dimensional target/output vectors. ...

más de 12 años hace | 0

| aceptada

Respondida
Why using fitnet is not giving 0.005 error with ENGINE Data set?
I don't have the slightest idea. It looks like the result of normalization. Contact MATLAB and find out who did it.

más de 12 años hace | 1

Respondida
how to use neural network to classify different signs made with hands?(hand gesture recognition)
For N I-dimensional feature vectors from c classes [ I N ] = size(input) [ c N ] = size(target) where the columns of...

más de 12 años hace | 1

| aceptada

Respondida
Why using fitnet is not giving 0.005 error with ENGINE Data set?
I generally consider a design successful if it can account for 99% of the mean target variance. The corresponding R^2 (Google Wi...

más de 12 años hace | 2

| aceptada

Respondida
How to overcome poor prediction of neural network.
Use datadivision and as few hidden nodes as possible. Repeat multiple times to get a good set of random initial weights. What...

más de 12 años hace | 0

| aceptada

Respondida
I need a starting point for choosing "spread" when using newrb()
If you standardize inputs (zscore or mapstd) the unity default is a good starting place. The best generalization performance...

más de 12 años hace | 0

| aceptada

Respondida
Weight initialization in patternnet
1. Why in the world are you using two hidden layers when 1 is sufficient? 2. Why are you using configure? TRAIN automatically...

más de 12 años hace | 2

Respondida
How to use Neural network to distinguish between noise and speech signals?
You have to train a classifier on a sufficient number of speech and noise examples. I recommend (1) a literature search (2) a...

más de 12 años hace | 1

| aceptada

Respondida
How can I use Neural Networks to create several networks instead of creating one by one manually?
You can do it with nested for loops. Indexed nets should be stored in cells. However, it is not clear what the difference in inp...

más de 12 años hace | 1

| aceptada

Respondida
Image Processing with Backpropagation algorithm
You need to search on image feature extraction.

más de 12 años hace | 1

Respondida
Influence of input parameters in Neural networks
1. Minimize the number of hidden nodes that will yield the desired goal. 2. Compare the performance of the 6 nets that resu...

más de 12 años hace | 1

| aceptada

Respondida
Probablity of outputs of binary classification in matlab
If you use columns of eye(2) for targets, the outputs will be consistent (i.e., as N-> inf) estimates of the input-conditional p...

más de 12 años hace | 0

| aceptada

Respondida
Low performance of neural network using logsig for output layer
newpr is the version of newff that is to be used for classification; newfit is for regression. All three are obsolete (see th...

más de 12 años hace | 0

| aceptada

Respondida
Neural network with softmax output function giving sum(output)~=1
There appears to be a bug in MATLAB's softmax. Before MATLAB introduced their version I coded my own. I lost it when my computer...

más de 12 años hace | 0

| aceptada

Respondida
how to model second order diffrential equation using NN tool?
Transform to a difference equation and use one of the timeseries functions (timedelaynet, narnet or narxnet). Hope this help...

más de 12 años hace | 0

| aceptada

Respondida
Increasing the number of epochs to reach the performance goal
One problem you have is that you are specifying the mse and mingrad goals without considering the scale of the target. I find th...

más de 12 años hace | 1

Respondida
How to record the data of weights and bias after every training by using neural network toolbox?
Train in a loop of 1-epoch adjustments. Store the weights at the end of each pass.

más de 12 años hace | 0

| aceptada

Cargar más