Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 1

Réponse apportée
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. ...

plus de 8 ans il y a | 0

| A accepté

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

plus de 8 ans il y a | 0

Réponse apportée
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

plus de 8 ans il y a | 0

Réponse apportée
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 ...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 1

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 3

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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 ...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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 ...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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 ...

plus de 8 ans il y a | 0

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

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
NARXNET: Validation stop
Validation Stopping prevents overtraining an overfit net. Although the training error is decreasing, the ability of the net ...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 0

| A accepté

Charger plus