Réponse apportée
Partition of data based on percentages (for cross-validation)
1. NOTE: Contrary to most statistical regression subroutines, MATLAB Neural Network subroutines operate on COLUMN VECTORS! 2...

plus de 8 ans il y a | 0

Réponse apportée
Recurrent neural network for real-time prediction
Words are nice but including code is much better. Which training algorithm are you using ? ...NARXNET ? Requiring a target ...

plus de 8 ans il y a | 0

Réponse apportée
Plot a graph MSE vs number neurons in hidden layer on matlab
Search both NEWSGROUP and ANSWERS using the search words Hmin Hmax The number can be whittled down via ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to partition data in a very specific way
The NN Toolbox can be used to obtain many sufficiently independent estimations of error by replacing stratification with double ...

plus de 8 ans il y a | 0

Réponse apportée
Time Delay Neural Network: How to separate measurements in dynamic data for the use either in the training or the test data?
Your explanation is too confusing. 1. Timeseries analysis contains one basic assumption: Every contiguous subset of the t...

plus de 8 ans il y a | 0

Réponse apportée
Derive a Neural Network Equation
https://www.mathworks.com/matlabcentral/newsreader/view_thread/341631#936181 Hope this helps. *Thank you for formally acce...

plus de 8 ans il y a | 0

Réponse apportée
How can I train neural network with a large data
INSUFFICIENT INFORMATION!!! 1. REGRESSION or CLASSIFICATION? 2. DIMENSIONALITY OF INPUT & OUTPUT VECTORS? If you haven...

plus de 8 ans il y a | 1

Réponse apportée
can't view confusion matrix in matlab
Use the training record tr from [ net tr ] = train(net,x,t) to find the separate sets of tr/val/tst indices. From these you ca...

plus de 8 ans il y a | 0

Réponse apportée
Is the validation data in a Neural Network to fit a function using Bayesian Regularization irrelevant?
That is a MATLAB design flaw. The older versions of TRAINBR do not allow a val subset. I have complained several times about tha...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
How to generate colored gaussian noise of a certain length?
ANSWERS COLORED NOISE 81 HITS NEWSGROUP COLORED NOISE 255 HITS GOOGLE MATLAB...

plus de 8 ans il y a | 0

Réponse apportée
Neural Network Test Data
It looks like a case of overtraining an overfit net. If you have O-dimensional outputs and use the default Ntrn ~ 0.7*N then you...

plus de 8 ans il y a | 0

Réponse apportée
perform command in neural netwrok
help perform doc perform %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% net = patternnet; performFcn = net.performFcn %...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Comparing the classification results ?
If the other classifiers do not use a validation set, then you should not either. In fact you should use the exact same training...

plus de 8 ans il y a | 0

Réponse apportée
Can please someone explain the Artificial Neural Network code below
Search 1. NEWSGROUP greg quickies 2. NEWSGROUP fitnet Hmin Hmax 3. ANSWERS fitnet Hmin Hmax ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
How can I set the normalization of the performance parameter in training a neural network?
1. You do not have to worry about normalizaion. It is a default. 2. Accept all defaults except the number of hidden nodes. ...

plus de 8 ans il y a | 0

Réponse apportée
Optimal hidden nodes number
I = 5, O = 1, N = 46824 Ntrn ~ 0.7*N = 32877 Ntrneq = Ntrn*O = 32877 Hub = (Ntrneq-O)/(I+O+1) = 32876/7 ~ 4682 For H <<...

plus de 8 ans il y a | 0

Réponse apportée
Is my neural network also using testing data to predict and not only the training and validation data?
1. a. I'm glad that you agree with me that DIVIDEBLOCK should be the default for time series prediction ( search NEWSGROUP...

plus de 8 ans il y a | 0

Réponse apportée
How does the input to a neural network change for a given input delay?
It is not exactly clear what you mean. When you have an input 1:N with a timedelay net that has a delay d, the first d input...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Optimal hidden nodes number
This is the approach I use. First I determine how many training equations are used Ntrneq = Ntrn*O Ntrn = number of t...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Machine learning for classificaiton, testing it, then including the testing set into a new training set?
The method that I used with a radar signal database that was sporadically updated over many years: 1. Extract the reflection...

plus de 8 ans il y a | 0

Réponse apportée
how to divide data into data testing and training
The NN Toolbox default is 15% Testing 85% Design --- 70% Training --- 15% Validation The validation subset is a non...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Is it possible to create a CNN with real output?
The simplest way is to represent the categories with integers >> categories = [ 1 3 5 4 2] >> target = full(ind2vec(ca...

plus de 8 ans il y a | 0

Réponse apportée
Why neural network sometimes performs worse when additional input variables are used?
1. You don't say what n is 2. How is the net suppose to know that n inputs is sufficient? 3. All it does is start somewher...

plus de 8 ans il y a | 0

Réponse apportée
Populate columns of matrix without for loop using input from a vector of intergers
>> clear all classindices = [1 3 5 4 2 ]; classmatrix = full(ind2vec(classindices)) classmatrix = 1 0 ...

plus de 8 ans il y a | 0

Réponse apportée
HI all I am new to neural network toolbox. I have data set of some company and i want to design a network for Stock market prediction of price of that particular company. how can i set threshold error of a NARX network
Please use: 1. Upper case for cells 2 Lower case for doubles 3. Subscript "o" for openloop 4. Subscript "c" for close...

plus de 8 ans il y a | 0

Réponse apportée
How to use Neural network time series tool to tune a temperature controller?
To begin with 1. In most of the neural network literature, x = input and t = target. 2. Therefore, it is disconcerting to ...

plus de 8 ans il y a | 0

Réponse apportée
How can I set the parameters of the feedforward neural network?
For run of the mill problems, you can use default settings except for a. The number of hidden nodes (default is 10) b. T...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to organize the input and target samples for neural network ?
It doesn't make any difference. By default, the algorithm will randomize the order. Hope this helps. Greg

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Is it possible to train a NARX model using multiple data sets from the same time series?
Theoretically, it can be done in a quadruple loop m = 1 : Ntrials n = 1 : 40 % 40 locations per trial i = 3 ...

plus de 8 ans il y a | 0

Charger plus