Réponse apportée
Flatten and unflatten a neural network
help getwb doc getwb help setwb doc setwb Hope this helps. *Thank you for formally accepting ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Employing SOM after PCA
1. PCA ranks principal components, not original variables. So, did you deduce 3 variables from the 3 principal components? 2....

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to interpret the outputs of patternnet?
You are confused (;>). 1. The original data set is divided into trn/val/tst subsets and yields 4 confusion matrices. 2. ...

plus de 8 ans il y a | 0

Réponse apportée
How is the layer weights matrix (IW.{i,j}) arranged when a connection has delays?
I see no reason why it can't treat delayed signals like ordinary inputs. Whether MATLAB does that or not, maybe a different s...

plus de 8 ans il y a | 0

Réponse apportée
Poor performance on Close-loop Narnet
From help nndatabase and doc nndatabase You will find a list of MATLAB data sets you can use to practice with I h...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to read result of sim using Patternnet ?
For two class classifiers with scalar 0/1 targets 1. Use LOGSIG as the output function 2. The output class index ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Neural network training Maximum mu reached
Reaching maximum mu is not a sign of convergence It is a sign that the training should be stopped because additional training...

plus de 8 ans il y a | 0

Réponse apportée
After training (nftool) a Neural network using the neural network toolbox, how do I test the trained network with new input data that doesn't have any target values?
output = sim(net,input); % = net(input) If you have no target, the only way to test it is to plot the output and look at it...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
neural network trained using partical swarm optimization
You should have [ I N ] = size(input) = [ 7 150] [ O N ] = size(target) = [ 3 150 ] Hope this helps. *Thank you for ...

plus de 8 ans il y a | 0

Réponse apportée
Iteration determine in Self-Organizing Map to Cluster Data
Type, without ending semicolon net = net then all properties will be displayed. Chose the one that corresponds to iter...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
sim function of the neuralnetwork
1. You didn't specify if this is a. regression/curve-fitting (FITNET OR NEWFIT) or b. classification/pattern-recogn...

plus de 8 ans il y a | 0

Réponse apportée
Binary Classification _ problem with data structure
There might be a caveat in the confusion matrix code that only accepts {0,1} 1-d outputs. check it out. Greg

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Why do i have NAN values in the confusion matrix only in the validation test?
MATLAB doesn't allow a validation set for trainbr because they think it isn't necessary for generalization. Although they are...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
sim function of the neuralnetwork
No. The net automatically normalizes the input with mapminmax and denormalizes the output with the inverse. Hope this h...

plus de 8 ans il y a | 0

Réponse apportée
Artificial Neural Network - Equations?
The equation for a single hidden layer is yn = B1 + LW * tanh( B2 + IW*) *xn where xn and tn are normalized to [-1,1]. ...

plus de 8 ans il y a | 0

Réponse apportée
How to normalize new inputs with mapminmax ?
You do not HAVE to normalize anything because the neural net AUTOMATICALLY normalizes input and target to [-1,1]. HOWEVER, I...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
How to use an already trained neural network NAR for future time series prediction?
Search for my posts in both the NEWSGROUP and ANSWERS greg narnet Hope this elps. Greg

plus de 8 ans il y a | 0

Réponse apportée
How to choose number of hidden layers
For 3 inputs and 1 output you only need 1 hidden layer. Minimize the number of hidden nodes subject to the maximum training...

plus de 8 ans il y a | 1

Réponse apportée
bad results of my neural network _ newsgroup
1. You did not define net = patternnet 2. Even though it is a classifier, just try to minimize H subject to the constraint ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to do when the inputs ranges for neural network are not so uniform in magnitude ?
Typically, MAPMINMAX only fails when outliers are present. Try MAPSTD to identify and modify (or delete?) outliers Hope th...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How do i fix my neuronal network
1. Since training functions transform inputs into the interval [-1 1], the hidden node functions should be odd, AND non-linear. ...

plus de 8 ans il y a | 0

Réponse apportée
Error index exceeds matrix dimensions why? Matlab 2016a
The Support group example is only for single inputs. See my version for multiple inputs. Hope this helps *Thank you for...

plus de 8 ans il y a | 0

Réponse apportée
How can I improve my neural network further?
1. Start with the documentation example 2. Explicitly calculate the input and target sizes 3. Remove all default assignment...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Nonlinear regression + Cross Validation = possible?
I am surprised to hear that SS thinks that cross validation is not used for regression. Maybe it is just a misunderstanding o...

plus de 8 ans il y a | 1

Réponse apportée
Self-Organising Map (SOM) with Principle Component Analysis (PCA)
It is not clear if you have a well defined output. If so, it IS NOT the variation of the inputs that are paramount. It IS ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How can I optimize data with no equations
Suggestions 1. Standardize each variable to have zero mean and unit variance 2. If the data is not naturally ordered, the...

plus de 8 ans il y a | 0

Réponse apportée
How can I use the Genetic Algorithm (GA) to train a Neural Network in Neural Network Toolbox?
>Let us clear some point out of Logic used GA for Updating Weight of NN >Previously we have studied that weight keeps on updati...

plus de 8 ans il y a | 0

Réponse apportée
Fitted Parameters & Mathematical Equation for ANN and ANFIS
MULTILAYER PERCEPTRON (MLP) [ I N ] = size(input) [ O N ] = size(target) [ O N ] = size(output) Ntrn = N-...

plus de 8 ans il y a | 0

Réponse apportée
Create custom NARX net
See the documentation examples help narxnet doc narxnet The only significant difference between your design and the d...

plus de 8 ans il y a | 0

Réponse apportée
How do I find the prediction bounds of a nonlinear curve?
Plot 1. The residuals 2. The residuals +/- m*stdv Hope this helps. Greg

plus de 8 ans il y a | 0

| A accepté

Charger plus