Beantwortet
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...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 8 Jahre vor | 0

Beantwortet
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...

mehr als 8 Jahre vor | 0

Beantwortet
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 ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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 = ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
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 ...

mehr als 8 Jahre vor | 0

Beantwortet
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...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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) ...

mehr als 8 Jahre vor | 0

| akzeptiert

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

fast 9 Jahre vor | 5

| akzeptiert

Beantwortet
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

fast 9 Jahre vor | 2

Beantwortet
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...

fast 9 Jahre vor | 1

Beantwortet
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...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 9 Jahre vor | 0

Beantwortet
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...

fast 9 Jahre vor | 0

Frage


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...

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
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...

fast 9 Jahre vor | 0

Frage


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 ...

fast 9 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
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...

fast 9 Jahre vor | 0

Beantwortet
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 ...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 9 Jahre vor | 0

| akzeptiert

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

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

Beantwortet
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 ...

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

Mehr laden