Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

Respondida
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

más de 8 años hace | 1

| aceptada

Respondida
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...

más de 8 años hace | 0

Respondida
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 ...

más de 8 años hace | 0

Respondida
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. ...

más de 8 años hace | 1

| aceptada

Respondida
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...

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

| aceptada

Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

Respondida
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 ...

más de 8 años hace | 0

| aceptada

Respondida
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 ...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

| aceptada

Respondida
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. ...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

| aceptada

Respondida
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 ...

más de 8 años hace | 2

| aceptada

Respondida
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 ...

más de 8 años hace | 0

Respondida
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 ...

más de 8 años hace | 0

| aceptada

Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

Respondida
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 =...

más de 8 años hace | 0

| aceptada

Respondida
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...

más de 8 años hace | 0

| aceptada

Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 0

Pregunta


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...

más de 8 años hace | 2 respuestas | 0

2

respuestas

Respondida
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...

más de 8 años hace | 0

Respondida
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...

más de 8 años hace | 1

| aceptada

Cargar más