Réponse apportée
How do you fill in NaN in time series using neural networks?
Try again using real data. Using random data for a time series makes no sense at all: It is the correlation between adjoining po...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
What work space values do i need to save separately to test Classification of a number of voice emotion recognition neural networks and compare a new input against several to give a result?
There are many fundamental problems. 0. You have spelled Target wrong 1. NEWFF with special cases NEWFIT (for curve"FITT...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Using NARX Neural Network
No. Use FITNET: help fitnet doc fitnet Search NEWSGROUP and ANSWERS greg fitnet greg fitnet tutorial Hop...

presque 9 ans il y a | 0

Réponse apportée
How do i train neural network using GA in matlab need code i am trying to predict stock market close value.
I don't recommend using GA. See my explanation in the NEWSGROUP and ANSWERS. Search with Greg genetic Hope this helps. ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How to apply generalized delta rule for back propagation in Matlab?
I suggest you start by consulting the documentation examples in help patternnet and doc patternnet Then consult so...

presque 9 ans il y a | 0

Réponse apportée
neural network fitting time to resolve
Your data has the dimensions [ I N ] = size(input) % [475 1.6M ] [ O N ] = size(target) % [ 2 1.6M ] However, since ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How to evaluate the pattern recognition peformance of newrb RBFNN
>I want to use a RBFNN for character recognition. I have 40 images >stored in a input vector N and 40 targets stored in a targ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
MATLAB Neural Network Training: Crazy Validation Output
I'm only using upper case for highlighting; always use lower case for coding. You are making an easy problem hard. To preven...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Error: horzcat CAT arguments dimensions are not consistent. with feedforwardnet and newff
lowercase a, b and c used in repmat are undefined. Hope this helps. *Thank you for formally accepting my answer* Greg

presque 9 ans il y a | 0

Réponse apportée
i'm a PHD student and i'm new in Neural Network code, i have 4 intput scalar which give as output 2 matrix (9x9), can you help me
The data are N pairs of I-dimensional "I"nput column vectors and corresponding O-dimensional "O"utput target vectors stored in t...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How to predict next value using time series that have only 1 column and 14000 rows ?
1. Transpose to get 1 row. 2. Search the NEWSGROUP and ANSWERS with narnet tutorial Good Luck, Greg

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Neural Network Toolbox Turn off Early Stopping
Set the training goal to 0 and set the allowed no. of validation increases to inf. Hope this helps. *Thank you for f...

presque 9 ans il y a | 0

Réponse apportée
My code runs as a m file but not as an exe. What to do?
Nowhere is 'net' defined. Hope this helps. Greg

presque 9 ans il y a | 0

Réponse apportée
syntax error which is not going after removing
t=(maxi,:) = x; is illegal. You cannot have more than 1 equal sign per statement. Use t=(maxi,:); x =t; Hope this...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How to calculate the Neural Network
I think you are on the wrong track. Typically all you know are the N pairs of I-dimensional inputs and corresponding O-dimens...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How to set target data in matlab for neural network ?
If you have 128 EEGs of length 256, you will need 128 targets of length 5 arranged so that the matrix sizes are size(input...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
should a neural network input have only one target group?
All that can be guaranteed (if you design enough nets with different random initial weights and numbers of hidden nodes) is that...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
,the overallperformance in the confusion matrix changed although i used the same number of hidden layer
Most likely you did not initialize the random number generator to the same initial state. Hope this helps, *Thank you for ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Replicating NARX architecture?
1. Please refrain from using numbers (e.g., 1, 11 and 12) as variables 2. Show some results using the MATLAB nar...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Can I use some other values rather then using the values of t2(target) to calculate the ya in neural network?
No. Default MATLAB transformations -1 <= xn, tn <= 1 xn = -1 + 2*(x-xmin)/(xmax-xmin) tn = -1 + 2*(t-tmin)/(tmax-...

presque 9 ans il y a | 0

Réponse apportée
how to improve performance of a neural network model
From the plots it seems that trend is captured and you probably can't do much better. In order to test that hypothesis try us...

presque 9 ans il y a | 0

Réponse apportée
Which's the better classifier to use for skin issues identification using matlab
PATTERNNET is a universal classifier which typically means for a given set of reasonable input/target pairs you will probably do...

presque 9 ans il y a | 0

Réponse apportée
how can we use MLP in matlab ?
You can design a MLP using the Neural Network Toolbox. This is orders of magnitude easier than trying to code it yourself. ...

presque 9 ans il y a | 0

Réponse apportée
PreProcessing- PostProcessing in Neural Network Toolbox
Only the 1st and last layers. *Thank you for formally accepting my answer* Greg

presque 9 ans il y a | 0

Réponse apportée
What is the input to layer recurrent network for time-series prediction task?
For documentation on the self prediction of a single series use NARNET help narnet doc narnet For examples earch both...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How to use neural network classify EEG signal?
Search both the NEWSGROUP and ANSWERS using neural eeg Hope this helps. *Thank you for formally accepting my answer* ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
One step ahead prediction using NARX networks
I HAVE COVERED MOST ASPECTS OF NARXNET DESIGN SEARCHWORDS HITS ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
How do use the newgrnn function for 5 featured data?
In most NN Toolbox functions: For N pairs of I-dimensional "I"nputs and corresponding O-dimensional "O"utput targets [ I N ...

presque 9 ans il y a | 0

Réponse apportée
How does newrb choose data center?
See my NEWSGROUP tutorials on NEWRB. Search with Greg newrb 1. Forward Search: At the end of each epoch the input with th...

presque 9 ans il y a | 0

Réponse apportée
NARX closed loop prediction: starting value problem
1. There is an erroneous shift between the blue and green curves because the delay is not properly accounted for. 2. Low er...

presque 9 ans il y a | 1

Charger plus