답변 있음
how can i bring mse near to 0 as it is very large on training data and how 5 steps ahead prediction is done with ntstool by using closeloop net
Insufficient detail. What are the input and targets? size(input) = ? size(target)= ? What are the significant lags o...

대략 11년 전 | 0

| 수락됨

답변 있음
How can i Use GA in MATLAB to train a neural network
Try the newest posts first NEWSGROUP HITS neural ga greg 14 neural genetic greg 20 neural ga ...

대략 11년 전 | 0

| 수락됨

답변 있음
How is it possible to use ANN in Optimization Problems ?
It is not clear to what you refer. Two thoughts come to mind: 1. Use an optimization program to train a nnet. 2. Use a nne...

대략 11년 전 | 1

| 수락됨

답변 있음
How to increase train features in a neural network classifier???
Oh, Wait a minute! You are using NEWPNN which uses all of the data for training. I recommend using NEWRBF instead. To sep...

대략 11년 전 | 0

| 수락됨

답변 있음
How to use divideind and then get the validate and test accuracy in the confusion matrix?
Regardless of divideFcn, use all of the data at once in train. Make sure the target columns are columns of eye(c) if there are c...

대략 11년 전 | 0

| 수락됨

답변 있음
image classifier using neural network
I assume you are using patternnet. Initial weights and data division depend on the current state of the RNG which changes eac...

대략 11년 전 | 0

| 수락됨

답변 있음
Why is the testSet (size) equal to the dataSet after installing net.divideParam.testRatio to 15/100.
The separation of y into trn/val/tst subsets is accomplished via the indices in the training record tr. [ net tr y e ] = tra...

대략 11년 전 | 0

| 수락됨

답변 있음
How to set training and taget data for training neural networks?
Make life easy and use a *.txt file. For the NNTBX you will have to transpose your matrices. For classification use patternnet ...

대략 11년 전 | 0

| 수락됨

답변 있음
Is it possible to show the significance of each input in relation to the outputs?
The following is a general answer to your title which may or may not be directly applied to your particular problem. 1. It i...

대략 11년 전 | 1

답변 있음
Neural Network Stock price prediction - Extremely accurate results
% Neural Network Stock price prediction - Extremely accurate results % Asked by Soham Acharjee about 10 hours ago % Hi, %...

대략 11년 전 | 0

답변 있음
Why is there a difference between output of neural network by inbuilt test function (ANN Toolbox) and custom designed test function? (Test Function: One that checks accuracy of network after training)
MAPMINMAX is not used correctly: 1. The parameters obtained from the training input should be used on the test input. 2. ...

대략 11년 전 | 1

| 수락됨

답변 있음
NARX Close loop error
Try searching both the NEWSGROUP and ANSWERS using greg narxnet closeloop Hope this helps. *Thank you for formally acc...

대략 11년 전 | 0

| 수락됨

답변 있음
Neural networks - How to use different datasets for training, validation and testing?
Please clarify because multiple 1/3,1/3,1/3 designs for each trial value of H, the number of hidden nodes, is exactly the best w...

대략 11년 전 | 0

| 수락됨

답변 있음
Unable to understand the 0% training for 4th class
1. I do not understand your explanation. Since you have 6 categories, your target columns should come from eye(6). 2. Correct...

대략 11년 전 | 0

| 수락됨

답변 있음
how to generate simple feed-forward code with accuracy?
Use patternnet for classification. help patternnet doc patternnet For c classes, the target columns are obtained from ...

대략 11년 전 | 0

| 수락됨

답변 있음
How can I access the weights and connections in nftool in MATLAB?
I don't understand: The weights are the connections between neurons. Also, I do not understand why you would want to do this....

대략 11년 전 | 0

| 수락됨

답변 있음
how can i use the neural network toolbox for face recognition using att database ?
Search both the NEWSGROUP and ANSWERS face recognition neural

대략 11년 전 | 0

답변 있음
What are the extra return values of this Neural Network training code?
For regression/curve-fitting (e.g., FITNET) and classification/pattern-recognition (e.g., PATTERNNET) with double variables ...

대략 11년 전 | 0

| 수락됨

답변 있음
Neural network AIC and BIC calculation (number of parameters?)
Search the NEWSGROUP and ANSWERS using greg Nw Hope this helps. *Thank you for formally accepting my answer* Greg

대략 11년 전 | 0

| 수락됨

답변 있음
What is the default radial basis function used in newrb() function?
Hyperspherical Gaussian help radbas doc radbas type radbas If you prefer hyperelliptical, use radbas in firnet or pat...

대략 11년 전 | 0

| 수락됨

답변 있음
Neural Network Results Are Not Close To Test Data
Yes. You've made at least one mistake.

대략 11년 전 | 0

| 수락됨

답변 있음
What are the advantages of curve fitting to regression Neural Network ?
Since NNs like FITNET do both, I think you are confused w.r.t. terminology. Do you mean when to use the neural toolbox instea...

대략 11년 전 | 1

답변 있음
How can I create dataset from excel file to use for function fitting problem using neural network?
You can do it with or without. If you don't you may come back sometime later and wonder what the names of the variables are....

대략 11년 전 | 0

답변 있음
How do I find out the number of neurons in layers?
% newrb( x, t ,MSEgoal, spread, Nbmax, dNdisp ) % x - I x N matrix of N "I"nput vectors. % t - O ...

대략 11년 전 | 0

| 수락됨

답변 있음
How to calculate mape in matlab for a data type double?
mean(abs(error./target)) Hope this helps. *Thank you for formally accepting my answer* Greg

대략 11년 전 | 0

| 수락됨

답변 있음
MAPE for out-of-sample in neural network
Not sure why you would use a measure that has the possibility of being infinite. However mape = mean(abs(e./t)) Hope this ...

대략 11년 전 | 0

| 수락됨

답변 있음
Neural Network Toolbox > Is there anybody who is using 'newff' for multiple inputs?
Using 90 hidden nodes is probably 10 orders of magnitude too high. Use as many defaults as possible. Vary the number of hi...

대략 11년 전 | 0

| 수락됨

답변 있음
NARX - Next Day Prediction of Stock Prices
> I am using a Time Dalay NARX Neural Network to predict the next day prices of stocks from a > particular industry sec...

대략 11년 전 | 0

| 수락됨

답변 있음
How can I access the weights and connections in nftool in MATLAB?
I think you will have to use the command line approach and loop over 1 epoch at a time. It will be painfully slow even if you...

대략 11년 전 | 0

답변 있음
good test error and wrong relative output
What are the results of something like (Notice the deliberate omission of semicolons) [ I N ] = size(x) [ O N ] = size(t...

대략 11년 전 | 1

| 수락됨

더 보기