Respondida
Flatten and unflatten a neural network
help getwb doc getwb help setwb doc setwb Hope this helps. *Thank you for formally accepting ...

más de 8 años hace | 1

| aceptada

Respondida
Employing SOM after PCA
1. PCA ranks principal components, not original variables. So, did you deduce 3 variables from the 3 principal components? 2....

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

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

más de 8 años hace | 0

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

Respondida
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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

| aceptada

Respondida
sim function of the neuralnetwork
No. The net automatically normalizes the input with mapminmax and denormalizes the output with the inverse. Hope this h...

más de 8 años hace | 0

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

más de 8 años hace | 0

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

más de 8 años hace | 1

| aceptada

Respondida
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

más de 8 años hace | 0

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

más de 8 años hace | 1

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

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

más de 8 años hace | 0

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 1

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

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

más de 8 años hace | 0

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

más de 8 años hace | 0

Respondida
Create custom NARX net
See the documentation examples help narxnet doc narxnet The only significant difference between your design and the d...

más de 8 años hace | 0

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

más de 8 años hace | 0

| aceptada

Cargar más