回答済み
Hi. I am using mse funtion to find the mse of my network. In my opinion mse should change for every input.once i save the network and reload it. the mse command doesnt work and produces error.kindly help
Just use MSE = mse(target-output) Hope this helps. *Thank you for formally accepting my answer* Greg P.S. You ca...

8年以上 前 | 1

| 採用済み

回答済み
How can I prepare proper input and output dataset for multilayer neural networks
One key to successful NN design is to use the simplest configuration possible. Typically, the higher the points to unknown weigh...

8年以上 前 | 0

| 採用済み

回答済み
Integral with neural network
Whenever I have to use a NN inside another function, I find it MUCH easier to just use the matrix format y = net(IW,LW,B1,B2...

8年以上 前 | 0

回答済み
How to implement cross validation in neural network for time series prediction
UH-OH ! I do not have crossvalind. CROSSVALIND IS NOT IN THE NN TOOLBOX!!! However, I have posted crossval...

8年以上 前 | 0

回答済み
Training a data in open loop and testing other data in closed loop
1. Design 10 or more OL nets ( neto1, neto2, ..., neto10, ...) 2. Close the loop on the successful designs to obtain initial ...

8年以上 前 | 0

| 採用済み

回答済み
i am training ANN and i want to write the Epoch where the best validation occurred into the workspace. what code can do that?
The training record TR contains the complete time history of all 3 subsets. [ net tr ] = train( net,input,target); tr = ...

8年以上 前 | 0

| 採用済み

回答済み
Neural Network for Currency Forecast - How do I stop it from repeatedly training after I am happy with my NN performance?
{1. The code you have posted is the open loop (OL) solution. 2. It is not a deployable network because it uses the desired ...

8年以上 前 | 1

| 採用済み

回答済み
Neural Network (NARX) performance interpretation - how small is small?
If you naively model a function with a straight line, the MSE is just the variance of the function and varies with the scale of ...

8年以上 前 | 0

回答済み
input and feedback delay in narxnet
1. Ntrn ~ 0.7*651 ~ 456 2. Use Ntrn for significant correlation threshold estimates 3. 1000 repetitions seems extreme. H...

8年以上 前 | 0

| 採用済み

回答済み
How to use a custom transfer function in neural net training
I cannot make sense of your post. tanh(x) = tansig(x) elliotsig(4*x) ~ tansig(x) elliotsig4(x) ~ tansig(x) ...

8年以上 前 | 0

| 採用済み

回答済み
How do validation check work in Neuralnet ?
design = train + validate train : Weight Estimation validate: Not directly involved in weight estimation. Protects ability...

9年弱 前 | 5

| 採用済み

回答済み
I get a "Performance function replaced with squared error performance" warning when trying to set 'crossentropy' as the performance function.
If you insist on using CROSSENTROPY, try PATTERNNET. Hope this helps. Thank you for formally accepting my answer Greg

9年弱 前 | 2

回答済み
Plot a curve that splits data into two sets
Your data is extremely discontinuous. The best you can hope for is a decision tree. Hope this helps *Thank you for formall...

9年弱 前 | 1

回答済み
Is there a script for backpropagation with momentum?
The best way to start is to accept all of the default values. For details help traingdm doc traingdm type traingd...

9年弱 前 | 0

| 採用済み

回答済み
Standard learning rate and momentum term trainlm NAR
There are 3 commands to try before posting help trainlm doc trainlm type trainlm Hope this helps. *Tha...

9年弱 前 | 0

回答済み
Why do the outputs of my neural network not sum to a value of 1 when using the softmax transfer function on the output layer?
If you are performing classification or pattern-recognition of c DISTINCT CLASSES you should be using PATTERNNET with unit sum 0...

9年弱 前 | 0

質問


How can I create a 2 x 0 empty cell array variable?
% As a result of help and doc narxnet neural network documentation, I get the following result [ X, T ] = simple...

9年弱 前 | 1 件の回答 | 0

1

回答

回答済み
Transfer network from alexnet doesn't learn parameters
If it is a simple matter of unbalanced class size, 1. Repeat enough of the smaller class data points to make the classes eq...

9年弱 前 | 0

質問


How to segment an image using neural network?
This question was erroneously put in an answer box by mahmud alatawi . PLEASE USE THIS POST FOR COMMENTS AND ANSWERS Greg ...

9年弱 前 | 2 件の回答 | 0

2

回答

回答済み
MATLAB code to predict stock price
In addition to the documentation help narxnet doc narxnet There are hundreds of NEWSGROUP and ANSWERS posts. For exam...

9年弱 前 | 0

回答済み
Difference between FFNN and NAR
1. The NARXNET timeseries net is defined for a. Present and past (i.e., delayed) external inputs b. Feedback inputs from ...

9年弱 前 | 0

| 採用済み

回答済み
How can I find the right neural network architecture
Search the NEWSREADER and ANSWERS using fitnet Hmin Hmax Ntrials Minimization of the number of hidden nodes subject to ...

9年弱 前 | 0

| 採用済み

回答済み
Predicting if a time-series nonlinear signal will reach end positions( 0 or max)
The answer to questions you have about input and feedback delays can be answered if you have relevant design data by using ...

9年弱 前 | 0

| 採用済み

回答済み
Recurrent neural network for real-time prediction
You can use [ net tr Y E Xf Af ] = train( net, X, T, Xi, Ai ); where Y = net(X,Xi,Ai) and E = gsubtract(T,Y) Hope th...

9年弱 前 | 0

| 採用済み

回答済み
Artificial Neural Network prediction
The data set doesn't have the information for predicting anything specific. Predictions are based on a history of variations ...

9年弱 前 | 0

| 採用済み

回答済み
In neural net function, how can I see normalized input data?
You have to use MAPMINMAX and calculate them yourself. The normalization inside of the training function is not accessible. F...

9年弱 前 | 0

回答済み
NEURAL NETWORK-SIGMOID FUNCTION
I just posted a followup to QUICKIES https://www.mathworks.com/matlabcentral/newsreader/view_thread/349202 The zeros and o...

9年弱 前 | 0

回答済み
NEURAL NETWORK-SIGMOID FUNCTION
Apparently 1. You are using the term prediction when you mean classification 2. You are using the term targets whe...

9年弱 前 | 0

回答済み
How to partition data in a very specific way
There are a variety of ways to divide your data. See the help and doc descriptions of divideblock, divideind and divideint ...

9年弱 前 | 0

回答済み
Need help with Matlab neural networks
Is this for regression/curvefitting or classification/patternrecognition? The respective current functions are FITNET and PAT...

9年弱 前 | 0

さらに読み込む