Answered
How to display weight distribution in hidden layers of neural network?
That will not work. It does not account for the correlations between inputs. The best way to rank correlated inputs is 1...

8 years ago | 0

Answered
Example from patternnet docs fails in Neural Network Toolbox Version 10.0 (R2017a)
clear all clc %stoperr %Undefined function or variable 'stoperr'. % [x,t] = iris_dataset; % net = patternnet(10...

8 years ago | 0

| accepted

Answered
Example from patternnet docs fails in Neural Network Toolbox Version 10.0 (R2017a)
I get two error messages: clear all clc %stoperr %Undefined function or variable 'stoperr'. [x,t] = iris_datase...

8 years ago | 0

Answered
In a NARX, are the weights kept constant from one training process to another with different input data?
You cannot train in batches of different data. The weight updates of the last batch will supercede all previous updates. Ther...

8 years ago | 0

| accepted

Answered
Neural Net Fitting App - How can I use all of my data to train (Set validation and testing data to 0% of input data)
Before using the app, change the divide function to net.divideFcn = 'dividetrain'; Hope this helps. Greg

8 years ago | 0

Answered
MATLAB nntool does not perform any iterations but directly declares Performance goal met. Why?
Why don't you believe "Performance goal is met" ? Did you run the new data through the old net to determine whether retrainin...

8 years ago | 0

| accepted

Answered
How do you make predictions with a trained Neural Network (NAR)?
1. Use the autocorrelation function to find a subset of statistically significant lags to use in narnet. The default may be t...

8 years ago | 1

Answered
Feedback Delay of a Layer Recurrent Neural Network with multiple Outputs
The only feedback to the input is from the hidden layer. However, given the input, there is no way to estimate that signal. ...

8 years ago | 0

| accepted

Answered
NARXNET: Validation stop
1. The ULTIMATE GOAL OF NN TRAINING is that the performance measures of BOTH a. Training data b. Non...

8 years ago | 0

Answered
How to change a transferFcn in neural network toolbox?
Eename a copy of tansig and get that to work. If so, the rest is easy. Hope this helps. Greg

8 years ago | 0

Answered
Does "train" already include train/val/test division if a feedforward neural network or should I do it manually before?
1. Use fitnet for regression and patternnet for classification. 2. Use the help and doc commands for sample code. 3. Run ...

8 years ago | 0

Answered
How to improve the performance of my neural network
You violated one of the first design rules: ALWAYS BEGIN WITH AS MANY DEFAULTS AS POSSIBLE. The rest usually follows from...

8 years ago | 1

Answered
how to define the size of feedback delays in Layer recurrent neural networks?
I DON'T KNOW. So, I would start with using the same input and feedback lags I would use for NARXNET input: Significant la...

8 years ago | 0

| accepted

Answered
I wanted to know what neural network could be suitable for my project
You obviously should use patternnet for classification. However, the hard part is how to do the feature extraction. I woul...

8 years ago | 0

Answered
How to make Neural Network Ignore the background?
You don't need to remove the background. Just consider it another class. Hope this helps. *Thank you for formally acce...

8 years ago | 3

Answered
Meaning of tr.best_perf
> I'm training multiple ANN using different parameters for each (I may use > two hidden layers in one case, three on the oth...

8 years ago | 0

Answered
Creating Equation by using neural network
NNs are for nonlinear problems. Your problem is a linear one: Output is a linear combination of input powers. y = W*X so ...

8 years ago | 0

Answered
How to predict future data after training the ANN?
The first thing you need to do is throw away as many redundant inputs as possible. I'm not sure of the best way to do it. Ho...

8 years ago | 0

Answered
Initialize a Neural Network from layers but do NOT train
Since trainedNet = trainNetwork(X, Y, layers, options) trains and returns a network, trainedNet, Just use a random Y...

8 years ago | 0

| accepted

Answered
How to select the target matrix for ANN based wind prediction algorithm
1. Values for a single input or target are in a ROW of the corresponding matrix. 2. Supervised NNs learn from paired input/t...

8 years ago | 0

Answered
how to pass matrix size 4x600 type double, as input neural network?
When you have each of N O-dimensional "O"utput target vectors corresponding to one of N I-dimensional "I"nput vectors, the data ...

8 years ago | 0

Answered
Problem with NARX open-loop training - Correlated with a shift - How to improve NARX training / testing
1. Openloop(OL) NAR and NARX configurations are NOT DEPLOYABLE! 2. They cannot estimate outputs when only inputs are known...

8 years ago | 0

| accepted

Answered
Problem with NARX open-loop training - Correlated with a shift - How to improve NARX training / testing
1. There is not much information in your plotted data. a. There seems to be 5 points within intervals of length ...

8 years ago | 0

Answered
NARXNET: Validation stop
WHOA!! I just took a look at the 2017a TRAINBR documentation. Contrary to my previous statements: YOU CAN USE TRAINBR ...

8 years ago | 0

| accepted

Answered
How do I improve the performance of a closed loop NARNET network?
Greg, 1. I used TRAINBR to improve NN generalization and avoid overfitting. (As per the documentation, but I haven't mastered...

8 years ago | 1

| accepted

Answered
How to create target matrix?
Considering the lack of details in your question, I'm surprised you received any responses. It is not even clear whether this is...

8 years ago | 0

Answered
Neural Network with multiple Outputs
For N I-dimensional "I"nputs yielding N O-dimensional "O"utputs [ I N ] = size(input) [ O N ] = size(target) You have...

8 years ago | 0

| accepted

Answered
NARXNET: Validation stop
Validation Stopping prevents overtraining an overfit net. Although the training error is decreasing, the ability of the net ...

8 years ago | 0

Answered
How to predict future data after training the ANN?
%Just relying on default values: x = annInput'; t = annTarget'; net = fitnet; [net tr y e ] = train(net,x,t); MSE = m...

8 years ago | 0

| accepted

Load more