답변 있음
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 = ...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 0

답변 있음
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...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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 ...

대략 12년 전 | 1

| 수락됨

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

대략 12년 전 | 1

답변 있음
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...

대략 12년 전 | 1

| 수락됨

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

대략 12년 전 | 1

| 수락됨

답변 있음
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) / ( ...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

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

대략 12년 전 | 0

| 수락됨

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

대략 12년 전 | 0

| 수락됨

답변 있음
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.

대략 12년 전 | 1

답변 있음
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...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 2

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 2

답변 있음
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...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 1

| 수락됨

답변 있음
Image Processing with Backpropagation algorithm
You need to search on image feature extraction.

대략 12년 전 | 1

답변 있음
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...

대략 12년 전 | 1

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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...

대략 12년 전 | 1

답변 있음
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.

대략 12년 전 | 0

| 수락됨

더 보기