Réponse apportée
NARX Neural Network Error in Preparets (line 293)
> index = 1000; > X = qu2(1:index); > T = qd2(1:index); > > ERROR: "index exceeds matrix dimensions" Isn't it obvi...

plus de 8 ans il y a | 0

Réponse apportée
How to interpret this results after creating neural network ?
This is RIDICULOUS! You used 3 consecutive NEWSGROUP posts on this problem. For the most part you just copied previous code w...

plus de 8 ans il y a | 0

Réponse apportée
how to manually create a non-linear input-output time series neural network?
help timedelaynet doc timedelaynet Hope this helps *Thank you for formally accepting my answer* Greg

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
At what point does variation in neural network training become unreasonable?
Since initial weights are random, the variation in results can be considerable. That is why I routinely design 10 to 30 nets for...

plus de 8 ans il y a | 0

Réponse apportée
How to apply neural pattern recognition to evaluate time-series data?
You do not mention any dimensions. So it is hard to make an informed comment. If you can use feature extraction to represent ...

plus de 8 ans il y a | 0

Réponse apportée
Normalize Inputs and Targets of neural network
MAPMINMAX can be inappropriate only if there are outliers. Use MAPSTD to detect outliers that can be removed or modified. ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
How to analyse the results of training of neural network
It is considered ill-mannered to post the same problem in both NEWSGROUP and ANSWERS See my answer in the NEWSGROUP Gr...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
self organizing map interpretation
The numbers are the number of data points inside the hexagonal cluster. Hope this helps *Thank you for formally accepting...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How do I create a large binary target matrix?
The only way to use eye is target = repmat(eye(6),50) Otherwise start with target = zeros(6,300) then in...

plus de 8 ans il y a | 0

Réponse apportée
2-Class Problem with patternnet
In order to insure stability with respect to changes in operating conditions I recommend MINIMIZING THE NUMBER OF HIDDEN NO...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Back propagation neural network
Insufficient info. Which net? How did you compute regression? The typical measure of regression performance is mean-square-er...

plus de 8 ans il y a | 0

Réponse apportée
How can i find the RMSE between 2D double matrices?
E = T-Y; SQE = E.^2 MSE = mean(SQE(:)) RMSE = sqrt(MSE) Hope this helps. *Thank you for formally accepting my ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to store time series data for use in patternnet?
A neural net is not necessary: Typically, linear trends are removed before applying the FFT. Therefore, your question can ...

plus de 8 ans il y a | 0

Réponse apportée
Neural network work better with small dataset than largest one ?
With respect to the original question: You really cannot deduce anything worthwhile about performance on the N = 981 datas...

plus de 8 ans il y a | 0

Réponse apportée
How can I employ SOM for this problem
What you have proposed makes no sense: 1. SOM is for unsupervised learning. 2. If you know the categories then you shoul...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Does MATLAB support neural networks for time-series classification problems?
The obvious choice is to use the 1st order differences of the smoothed data as the input to the classifier. Hope this helps. ...

plus de 8 ans il y a | 0

Réponse apportée
Does the input data for neural network for classification should be normalized?
MATLAB automatically normalizes input and target data and unnormalizes output results. However, I typically normalize my regr...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Reducing overfitting in Neural networks
K-FOLD CROSS-VALIDATION IS NOT A CURE FOR THE ILLS OF AN OVERFIT NET. BACKGROUND: 1. OVERFITTING: Nw > Ntrneq ...

plus de 8 ans il y a | 2

| A accepté

Réponse apportée
ANN Problem: matrix dimensions must agree.
Whenever faced with the error message Matrix dimensions must agree The commands SIZE & WHOS have always led me to the ...

plus de 8 ans il y a | 0

Réponse apportée
How to improve the accuracy of confusion matrix of neural network?
1. Search both the NEWSGROUP and ANSWERS using greg patternnet and greg patternnet tutorial 2. Many of the posts ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
General code of back propagation feed forward neural network
HAH!!! Trying to use one code for everything is a fool's errand. That is why MATLAB offers several generic codes for several gen...

presque 9 ans il y a | 0

Réponse apportée
Neural network after train script excecution issue
The inner dimensions in one or more matrix multiplications are not the same. Use the size function to verify the inner dimen...

presque 9 ans il y a | 0

Réponse apportée
How to choose the number of neurons in the hidden layer of neural network?
Use trial and error with the training subset goal MSEtrngoal = 0.01*var(trntarget,1) % 1-D target or MSEtrngoal =...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
how to solve this problem using neural network?
For N pairs of I-dimensional "I"nputs and corresponding O-dimensional "O"utput target outputs, the matrices must have the d...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Why I have the same neural network results with different weight and bias initiation each time?
net.divideParam.trainInd = trnind; net.divideParam.testInd = tstind; GEH1: TRNIND & TSTIND ARE NEVER DEFINED. EVEN S...

presque 9 ans il y a | 0

Réponse apportée
I just modeled some data involving two inputs and two targets using neural networks. How do i get the MAD and RMSE of the data?
See the help and doc documentation on how to obtain the output. help fitnet doc fitnet Then error = target-outp...

presque 9 ans il y a | 0

Réponse apportée
How can i combine neural network with genetic algortihm (GA) to optimize weights in ANN
So far my efforts have not been satisfactory. However, I have not found anything better. See https://www.mathworks.com/matlab...

presque 9 ans il y a | 0

Question


WHY CANNOT MATLAB POST SATISFACTORY EXAMPLES OF NN DESIGN USING GA ???
Satisfactory examples would include multiple MATLAB example data sets from help nndatasets doc nndatasets Including a...

presque 9 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
How can I include prior information like a known relationship between my output variables of a regression problem into neural network design (fitnet)?
It depends on the relationship. For [ 0, 1 ] targets that sum to 1, just use the crossentropy function in the output layer an...

presque 9 ans il y a | 0

Réponse apportée
Neural Net: Saving Trained Net
I am not sure why you used a cascade forward net. That net has no feedack loops. The generating equations indicate that a nar...

presque 9 ans il y a | 1

| A accepté

Charger plus