Beantwortet
Narxnet: time shift of predicted value with respect to real target value
1. By default, TRAIN automatically divides the data. As long as you use divideblock, I see no reason for you to explicitly decom...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How can I prepare input and target matrix for RBF neural network?
input = [ input1 input2 ] target = [ target1 target2 ] size(input1) = [ 8 130 ] target1 = repmat([1 0 ]',1,130) ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to train a Matlab Neural Network using matrices as inputs?
Standard procedure: Each input and output must be a column vector. If your original input is an image, just use the column op...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to determine whether to remove a generated outlier or not in stepwise regression?
My approach: 1. Use zscore (you can also use mapst) to standarize all variables to zero-mean/unit-variance. 2. Us...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
A question regarding stopping rules, local minimum vs early stopping
To see the network parameter settings, create the net without a final semicolon: >> net = fitnet % no semicolon The prop...

mehr als 10 Jahre vor | 1

| akzeptiert

Beantwortet
Are reasonable targetless multistep ahead predictions in a NARXNET even possible?
AS I have stated in Subject: HELP NARXNET BUGS, COMMENTS and SUGGESTIONS From: Greg Heath Date: 7 May, 2015 13:06:58...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
I'm going to build up a narx model using two inputs with different input delays for each input. How should i put different input delays in to my network?
If you have multiple inputs and want different delays for different inputs, you have to define a CUSTOM NETWORK with parallel ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to get R squared values in NARX Neural Network?
Modify the OpenLoop " help narxnet " example: close all, clear all, clc [ X, T ] = simplenarx_dataset; neto = narxne...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Neural network where each input neuron has multiple dimensions and each output neuron has the same dimensions.
> Hm. Well what I'm asking is that each input neuron in the input layer takes in a vector of dimension 12. < I repeat: 1...

mehr als 10 Jahre vor | 0

Beantwortet
tha meaning of delay in neural net time series
net = narxnet(ID,FD,H) ID is a row vector of NONNEGATIVE, INCREASING BUT NOT NECESSARILY CONSECUTIVE, INTEGERS FD i...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How can I ameliorate the Neural network implementation?
# Try not to have have more unknown weights than training equations (OVERFITTING) because there is no guarantee that you will g...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to fix this error with Neural Network Classifier?
You need to find an algorithm for face recognition feature extraction to drastically reduce the size of the 4800-dim inputs. ...

mehr als 10 Jahre vor | 0

Beantwortet
After training Neural Networks What next??
No. Either the current syntax y = net(x); or the obsolete syntax y = sim(net,x); See the documentation help fi...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
how to form target vector for neural network?
If N I-dimensional vectors are to be classified into one of c exclusive classes, the target vectors should be {0,1} c-dimensiona...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
I want brief description of NARNET neural network
NO! NARNET and ELMANNET are NOT similar!! 1. Carefully compare the descriptions in BOTH the help and doc command line documen...

mehr als 10 Jahre vor | 1

| akzeptiert

Beantwortet
Do i have to normalize the input as well as output data while using newff function for neural network?
NEWFF will automatically normalize input and target, then use the target statistics to unnormalize the output. First run the ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
query about validation set
http://www.mathworks.com/matlabcentral/answers/261732-neural-network-time-series-prediction-changing-the-inital-state

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
What is the difference between NAR and closed-NAR in time series analysis (in a conceptual level)
OL NARXNET uses the known training target as an input. Obviously, it is only used for design. The CL NARXNET replaces the kno...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Neural Network Time Series Prediction - changing the inital state -
NEURAL NETWORK SUBSET TERMINOLOGY(comp.ai.neural-nets): data = training + validation + test design = training ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
I have stuck with using narnet .
net = narnet(1:.1,10); 1:0.1 is an error However, I do not think that you have enough data to do what you wish. Any fu...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
What does "Performance" mean in NN Toolbox's training record window?
It depends on the training function. The defaults for fitnet and patternnet are mean-square-error and crossentropy, respectively...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Forecasting BOD values using MATLAB neural net toolbox
ALWAYS use the function WHOS to keep track of size and class for all variables. Then you would see that T and Y are not the same...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
I built a neural network using neural network tool box. I want a function from the built network which I can use in genetic algorithm as objective function. Is there any way ? TIA
The analytic form of a default single hidden node MLP is (tansig == tanh) y = B2 + LW*tansig(B1+IW*x) % FITNET y = cross...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
validation sets vs test sets
Total = Design + Nondesign Design = Training + Validation Nondesign = Testing Total = Training + Nontraini...

mehr als 10 Jahre vor | 2

Beantwortet
Input and output in neural net toolbox
Please post Data.m or Data.txt [ 5 18 ]= size(input) [ 1 18 ] = size(target) MSE00 = var(target,1) % Reference MSE ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to use trained neural network time series data for forecasting?
The term "trained neural network time-series data" makes no sense. If you mean how do you use time-series data with a tra...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
My training data is too big for regression
Randomly divide the dataset into m subsets that are small enough to train. Run all of the data thru each of the m nets. Ra...

mehr als 10 Jahre vor | 0

Beantwortet
Hi, i want to recognize connected characters as shown in the following image, after segmentation can i use neural networks to recognize the characters?
Yes. Search the NEWSGROUP and ANSWERS using the search terms NEURAL CHARACTER RECOGNITION HOPE THIS HELPS. GREG

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to define error weights in Neural Network?
The documentation commands help train doc train yield [NET,TR] = train(NET,X,T,Xi,Ai,EW) Hope this helps. ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
What is th difference between spread parameter in RBF and GRNN?
No difference. It is the distance from the center of a Gaussian where te value is one-alf of the peak value Hope this helps. ...

mehr als 10 Jahre vor | 0

| akzeptiert

Mehr laden