回答済み
Neural Network: what does mean when the R-value is close to 1, but MSE (mean squared error) is large?
R^2 = 1 - MSE/mean(var(target',1)) If the R value is large, then the MSE value is much smaller than the mean target varia...

10年以上 前 | 1

| 採用済み

回答済み
How can I correctly calculate the outputs of the hidden layers in a neural network?
You did not take into consideration the default normalization of the input and target as well as the default denormalization of ...

10年以上 前 | 0

| 採用済み

回答済み
Narx delays problem & multistep ahead predictions
The version of the code you are using is both dated and error prone. Check both the NEWSGROUP and ANSWERS for the latest versio...

10年以上 前 | 0

| 採用済み

回答済み
neural network problem, denormalize and new data simulate
Searching ANSWERS using B2 + LW * tanh (B1 + IW * X) yields 28 hits. Searching the NEWSGROUP probably yields more than t...

10年以上 前 | 0

| 採用済み

回答済み
Neural Network - net.divideFcn = 'divideind'
Yes. However, use [ 1:4, 10:20] *Thank you for formally accepting my answer* Greg

10年以上 前 | 0

| 採用済み

回答済み
How to reproduce exact results of a patternnet network using feedforwardnet network.
Why didn't you just make a simple search on patternnet feedforwardnet and find http://www.mathworks.com/matlabcentral...

10年以上 前 | 0

| 採用済み

回答済み
How to create data set in neural networks for matlab2013a?
The obvious thing to do is search the NEWSGROUP and ANSWERS using the search words character recognition neural or even ...

10年以上 前 | 0

| 採用済み

回答済み
I need help for determine significant feedbackDelays hiddenLayerSize by using NARNET
Search the NEWSGROUP and ANSWERS using NARNET NNCORR Hope this helps. *Thank you for formally accepting my answer* ...

10年以上 前 | 0

| 採用済み

回答済み
How can i put the conditional statement ( If-Then-else) on the specific elements (Rows/columns) of a matrix in Matlab Using Neural Network Tool?
If you have 4 classes, your target matrix columns should be columns of eye(4). The relationship between class indices 1:4 and th...

10年以上 前 | 0

| 採用済み

回答済み
Which part of Neural Network Dynamic time series tool box does normalizing and denormalizing of data? I mean in advanced script.
Normalization denormalization are done automatically in train. Hope this helps. *Thank you for formally accepting my answe...

10年以上 前 | 0

| 採用済み

回答済み
averaging ROC curve for neural networks after some iterations
There is nothing meaningful in averaging ROC curves obtained from different stages in training. Hope this helps. *Thank yo...

10年以上 前 | 0

| 採用済み

回答済み
I need to know the data used for training, validation and test in neural network
[ net tr y e ] = train(net, x, t); % y = net(x); e = t-y: tr = tr % The training record will reveal the training informatio...

10年以上 前 | 0

| 採用済み

回答済み
R^2 for comparing the results of measured vs. predicted (non-linear model) values
Yes. Search the NEWSGROUP and ANSWERS with greg and one of Rsq R2 R2a R2trn R2trna R2val R2tst Hope this helps. *Thank...

10年以上 前 | 1

| 採用済み

回答済み
artificial neural network question
For most of the training algorithms, scaling is an automatic default. Which algorithm are you using? Classification/pattern-reco...

10年以上 前 | 0

| 採用済み

回答済み
Denormalization output neural network
SEARCH THE NEWSGROUP GREG ANALYTIC TUTORIAL Hope this helps. *Thank you for formally accepting my answer* Greg

10年以上 前 | 0

| 採用済み

回答済み
how can find the optimal delays and number of hidden nodes in narnet for forecasting task?
I have many posts regarding this. Search both the NEWSGROUP and ANSWERS using subsets of the following search words greg ...

10年以上 前 | 0

| 採用済み

回答済み
how to getting started with neural network?
Search the NEWSGROUP and ANSWERS using greg timedelaynet tutorial greg narnet tutorial greg narxnet tutorial It m...

10年以上 前 | 0

| 採用済み

回答済み
Using Neural Network for data interpolation
Use the command line approach help FITNET doc FITNET Search the NEWSGROUP and ANSWERS using subsets of greg fitne...

10年以上 前 | 0

| 採用済み

回答済み
Extract the equation of the neural network
There are 7 basic NNs in the NN Toolbox. Although they all have default configurations, very often modifications are used. I don...

10年以上 前 | 2

| 採用済み

回答済み
Can I initialize feedforward net with 'midpoint'?
1. It doesn't matter how MATLAB initializes your net. You can always override the initialization using help setwb doc set...

10年以上 前 | 0

| 採用済み

回答済み
applying k-fold with Artificial Neural Network
Search BOTH the NEWSGROUP and ANSWERS using greg cross validation greg crossvalidation greg cross-validation Check th...

11年弱 前 | 0

| 採用済み

回答済み
NARnet Closed loop prediction results not good
I haven't looked at your code because you haven't looked at my previous posts regarding the transition from openloop to closeloo...

11年弱 前 | 0

| 採用済み

回答済み
Recognize overfitting in retraining
Recognize overfitting in retraining Asked by Federico Ambrogio on 25 Sep 2015 at 9:47 I wrote the following code, inspired of th...

11年弱 前 | 0

| 採用済み

回答済み
Regression Plot
No mystery. The training algorithm tries to minimize the error on the training subset. That is why the training error is, mo...

11年弱 前 | 0

| 採用済み

回答済み
Artificial neural network - weights & biases
1. newff automatically normalizes F and T to [-1,1] and then unnormalizes the net output to obtain Tnet 2. The default trans...

11年弱 前 | 2

| 採用済み

回答済み
Neural Networks extrapolation (using closed network - multistep prediction) can not even predict a line ?
Since the target is a straight line, no hidden layer is used. (In general, I would find the minimum number of hidden nodes...

11年弱 前 | 0

| 採用済み

回答済み
Neural Networks extrapolation (using closed network - multistep prediction) can not even predict a line ?
1. You do not need a hidden layer for a straight line. Therefore, you are overfitting. It is good practice to try to minimize t...

11年弱 前 | 0

回答済み
how to build data set in neural network designing?
[ I N ] = size(input) [ O N ] = size(target) Hope this helps. *Thank you for formally accepting my answer* Greg

11年弱 前 | 0

| 採用済み

回答済み
neural network, narxnet, multi-step prediction
SURPRISE!!! ... IT TURNS OUT THAT GOOD CL PREDICTION IS OBTAINABLE WITH JUST THE INPUT AND ZERO INITIAL CONDITIONS! THE ONLY DIF...

11年弱 前 | 2

| 採用済み

さらに読み込む