回答済み
How do I form an empirical equation using a trained Feed Forward Back Propagation Neural Network with Logsig transfer function, 2 input, 10 hidden, and 3 output neurons? Please anybody show me the procedure.
Search BOTH the NEWSGROUP and ANSWERS using greg analytic You should be able to find more than a few examples Hope thi...

10年弱 前 | 0

| 採用済み

回答済み
RMSE in Normalized Data .
I see no reason for doing that. Greg

10年弱 前 | 0

| 採用済み

回答済み
Identify an unknown pattern showing up in a list of matrices
Just average the matrices. Hope this helps. *Thank you for formally accepting my answer* Greg

10年弱 前 | 0

回答済み
In pattern recognition using neural network what should be the output?
% For c classification categories numbered 1:c, use a classindex row vector classind = [ 5 3 1 4 2 5 4 3 2 1 ] N = l...

10年弱 前 | 0

| 採用済み

回答済み
how to predict next value using time series data?
OK I get it: [ I N ] = size(input) % [ 3 144 ] [ O N ] = size(target) % [ 1 144] Hope this helps. *Thank you for ...

10年弱 前 | 0

回答済み
Can we use strings as target matrix in neural network fitting app?
If you have c cloud types make the targets {0,1} c-dimensional unit column vectors from the unii matrix eye(c). Hope this hel...

10年弱 前 | 0

回答済み
How can I train neural network with more data than can fit the memory?
You do not need to train on all of that data. You have 11 inputs dimensions. They are more than adequately sampled if you r...

10年弱 前 | 0

| 採用済み

回答済み
artificial neural network simulation
A. It is well known (see the comp.ai.neural-nets FAQ) that nets train and perform easier when: 1. Outliers are modified...

10年弱 前 | 0

回答済み
Is it possible to add softmax layer and use cross entropy with layrecnet?
For c classes just use {0,1} c-dimensional unit vectors in the output. The assigned class is obtained from the maximum value...

10年弱 前 | 0

| 採用済み

回答済み
how to train a 3D input matrix using back propagation neural network?
1. Of course there is a problem. EACH of the N I-dimensional input vectors creates ONE O-dimensional output vector. So, ...

10年弱 前 | 0

| 採用済み

回答済み
What is the equivalent of the function "perform" in MATLAB 2010 ?
% Properties of any net can be deduced by OMITTING AN ENDING SEMICOLON % Example 1 at net creation: close all, clea...

10年弱 前 | 0

| 採用済み

回答済み
how to train a 3D input matrix using back propagation neural network?
[ I N ] = size(input) % [180, 51] [ O N ] = size(target) % [408, 51] Hope this helps. Greg

10年弱 前 | 1

回答済み
1. what is the minimum number of the input(Data) that u can use to train Neural Network for Multi Step Ahead Prediction?,2. how can I feed the following data to my code?,(my data are{54 60 69 73 79 80) I want to predict multi step ahead
You do not want the number of unknown parameters, Np, to exceed the number of training equations, Ntrneq. In the default m...

10年弱 前 | 0

| 採用済み

回答済み
Data Normalization for Artificial Neural Network use
For regression/curve-fitting just use FITNET. Defaults will take care of those details. Typically, you only have to worry ab...

10年弱 前 | 0

回答済み
SUGGESTIONS FOR IMPROVEMENT(S) ON NARNET MULTISTEP AHEAD PREDICTIONS ON THE SOLAR DATASET?
close all, clear all, clc, plt=0, tic % FOR UNBIASED PREDICTION OF FUTURE SOLAR FLARE EVENTS, 70/15/15 DIVIDEBLOCK DATADIVISI...

10年弱 前 | 1

回答済み
What kind of RMSE should I choose to show the capability of function approximation with Neural Networks ؟
Neither: 1. The default performance function of the regression NNs NEWFIT (calls the generic NEWFF; both are obsolete but sti...

10年弱 前 | 0

| 採用済み

回答済み
SUGGESTIONS FOR IMPROVEMENT(S) ON NARNET MULTISTEP AHEAD PREDICTIONS ON THE SOLAR DATASET?
Here is my preliminary result with default 70/15/15 datadivision and H = 10 hidden nodes. However, NONDEFAULT DIVIDEBLOCK was ...

10年弱 前 | 0

| 採用済み

回答済み
how to create exe file from NN toolbox trained network for testing on new data inputs
% To save save net1; % To use on new data in another program or from the command line load net1 newoutput = net1(n...

10年弱 前 | 0

回答済み
Training the neural network
1. To list the net properties available for changing either a. Create a new net without the ending semicolon ...

10年弱 前 | 0

| 採用済み

回答済み
SUGGESTIONS FOR IMPROVEMENT(S) ON NARNET MULTISTEP AHEAD PREDICTIONS ON THE SOLAR DATASET?
For UNBIASED FUTURE PREDICTIONS of the SOLAR_DATASET, I see the initial attack structured as follows: 1. DIVIDEBLOCK DATA...

10年弱 前 | 0

回答済み
How to train a model to predict the material removal rate, tool wear rate and surface roughness using neural network in Matlab?
This is a regression/curve-fitting problem for which the NN function FITNET was designed. After reading the help and doc doc...

10年弱 前 | 0

| 採用済み

回答済み
Neural network's simulation result OUTRANGE the target data.
The range of your output data depends on the output activation function. The default NN for regression and curve-fitting is FITN...

10年弱 前 | 0

回答済み
how to import bankruptcy predication dataset with 15 variables
Why is a beginner interested in using a hybrid model? I don't see the point. Just concentrate on obtaining the best of both ...

10年弱 前 | 0

回答済み
Understanding neural networks with patternet
I have contributed to 57 NEWSGROUP threads about PATTERNNET (14 within the past year). Many are of a tutorial nature. I recom...

10年弱 前 | 0

| 採用済み

回答済み
How can I classify 1000 images consisting of 10 classes of 100 images each(Wang database) using patternnet?
[ I N ] = size(x) % [ 64 1000 ] [ O N ] = size(t) % [ 10 1000 ] where the columns of t are columns of the {0,1} unit mat...

10年弱 前 | 0

| 採用済み

回答済み
Not expected weights size
1. I have found the "I"nput and "O"utput target vector dimensions for the MATLAB NN EXAMPLE DATA SETS using the help and ...

10年弱 前 | 0

回答済み
How could I have an optimization plot of the optimum settings?
If you have a net that estimates Y from X, there is no easy way to estimate X from Y unless you design a second net. Hope thi...

10年弱 前 | 0

回答済み
Using Neural Network approach compute DFT and power spectrum of a sampled data sequence.
Inappropriate for NNs. USE the FFT. Greg

10年弱 前 | 0

| 採用済み

さらに読み込む