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

9年弱 前 | 1

| 採用済み

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

9年弱 前 | 0

| 採用済み

回答済み
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. ...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

| 採用済み

回答済み
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 ...

9年弱 前 | 0

| 採用済み

回答済み
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...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

| 採用済み

回答済み
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 ...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

| 採用済み

回答済み
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...

9年弱 前 | 0

回答済み
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

9年弱 前 | 0

| 採用済み

回答済み
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...

9年弱 前 | 0

| 採用済み

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

9年弱 前 | 0

回答済み
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]. ...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 1

| 採用済み

回答済み
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

9年弱 前 | 0

回答済み
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...

9年弱 前 | 1

回答済み
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 ...

9年弱 前 | 0

| 採用済み

回答済み
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...

9年弱 前 | 0

| 採用済み

回答済み
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. ...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

| 採用済み

回答済み
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...

9年弱 前 | 1

回答済み
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 ...

9年弱 前 | 0

| 採用済み

回答済み
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...

9年弱 前 | 0

回答済み
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...

9年弱 前 | 0

回答済み
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-...

9年弱 前 | 0

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

9年弱 前 | 0

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

9年弱 前 | 0

| 採用済み

さらに読み込む