Respondida
How to optimize patternnet using a genetic algorithm
See my three replies to your question in this Newsgroup thread: <http://www.mathworks.com/matlabcentral/newsreader/view_thread/...

más de 13 años hace | 0

| aceptada

Respondida
NARX for Multi Input Multi Output system Identification
1. Write and test your code assuming SISO 2. Convert to MIMO and test 3. If you have problems or questions, post relevant ...

más de 13 años hace | 1

| aceptada

Respondida
Regarding Neural network fitting tool
Everything you need is stored in the training structure tr. Just type tr = tr with no semicolon to see what is there. [ net...

más de 13 años hace | 0

| aceptada

Respondida
How to built time delay network for time series prediction ?
The created net does not know it is going to have a 5-dimensional input. view(net) Therefore, tell it by using CONFIGURE (...

más de 13 años hace | 0

| aceptada

Respondida
Perceptron Neural Network using matlab
If you have the NNTBX, just read the documentation and try a few demos using PATTERNNET and some of the pattern recognition/clas...

más de 13 años hace | 0

| aceptada

Respondida
'preparets' command in Matlab Ver 7.9.0 (R2009b)
Using the commands type closeloop and type preparets, I found the copyright dates of 2010 and 2010/2011, respectively. So if you...

más de 13 años hace | 0

Respondida
kindly guide me which algorithm should i use in pattern matching else then neural networks?
It depends on your version of the Neural Network Toolbox. The current version is PATTERNET. The previous version was NEWPR. U...

más de 13 años hace | 0

| aceptada

Respondida
As used in closed loop network NarX reality
Please add a line of English translation beneath your Spanish cooments % I have two files: % p (are the inputs), consistin...

más de 13 años hace | 0

Respondida
'preparets' command in Matlab Ver 7.9.0 (R2009b)
1. Run all of the original data through the open loop net. Tabulate and plot the resulting OL error. You may want to color code ...

más de 13 años hace | 0

| aceptada

Respondida
How to exactly predict the percentage of individual classes detected in a neural network regression problem
You don't have a regression problem. You have a 5-class classification problem. The target matrix size should be [ 5 N ] cons...

más de 13 años hace | 0

| aceptada

Respondida
As used in closed loop network NarX reality
I think the network is evaluated openloop and I think it gives good results, What are I, N, ID, FD, H, Ntrn, Nval, Ntst, R...

más de 13 años hace | 0

| aceptada

Respondida
Precisions obtained with network openloop NarX
net = narxnet(ID,FD,H); What are ID, FD and H? Typically, the sign of overfitting is very high R2trn with much lower R2t...

más de 13 años hace | 0

| aceptada

Respondida
Network iterations closeloop NarX
Not sure what you are asking. Have you successfully designed and evaluated the open loop net? R2trn = ? R2trna = ? R2val = ?...

más de 13 años hace | 0

| aceptada

Respondida
SKin cancer detection using ANN
How many features? How many class 1? How many class 0? help patternnet doc patternnet Search the NEWSGROUP and AN...

más de 13 años hace | 0

Respondida
Training NARX open loop but testing closed loop
% So below you can see how my final code looks like for at least the open loop part still this part has two problems. % 2....

más de 13 años hace | 0

| aceptada

Respondida
New questions and valuation of final results
Before you close the loop, use tr to closely examine the trn, val, and tst results. The order of importance is tst, val , trna...

más de 13 años hace | 0

| aceptada

Respondida
How is test set used in trainbr algorithm?
The test set is never used to influence the design. *Thank you for formally accepting my answer* Greg

más de 13 años hace | 0

| aceptada

Respondida
can anyone explain me this code??
I've got a better idea: 1. What is size(x8)? 2. Why don't you tell us what you think the names of the different parameters...

más de 13 años hace | 1

| aceptada

Respondida
Doubt NarX network and its implementation to meet future value
Future values are NOT intoduced. PREDICTIONS of future values are introduced. Understand the difference now? Hope this ...

más de 13 años hace | 0

| aceptada

Respondida
First Neural Network Using XOR
I have many posts on the NEWSGROUP, ANSWERS and comp.ai.neural-nets re XOR. Most can be retreived by searching on greg xor ...

más de 13 años hace | 0

| aceptada

Respondida
About Neural Network..... How to train Neural Network?
The I input features of the N = N0+N1 point class mixture are put in the same input matrix [ I N ] = size(input) For c =2...

más de 13 años hace | 0

| aceptada

Respondida
Precision network analysis NarX
*1. Use original trn/val/tst data and 'divideblock' to create and evaluate the open loop net.* *2. If val and tst performance...

más de 13 años hace | 0

| aceptada

Respondida
neural network test with a new data set
I want to forecast outdoor air temperature with input set(ground temp, cloud, relative humidity). The training/validation/testin...

más de 13 años hace | 0

| aceptada

Respondida
In the processing of our project they had added and remaved noise, does anyone know why this was done?
It is obviously a way to generate, from one ideal image, many reasonable approximations of real world data that have passed thr...

más de 13 años hace | 0

| aceptada

Respondida
Training NARX open loop but testing closed loop
%% Training NARX open loop but testing closed loop %% Comment by esra on 20 Feb 2013 at 10:47 % 1. I checked the autocorre...

más de 13 años hace | 0

Respondida
How can i improve the performance of a closed loop NARX neural network?
FRANCISCO on 17 Feb 2013 at 17:09 % I've been testing my code in pollution_dataset with indications dao me % and I have se...

más de 13 años hace | 1

Respondida
How can i improve the performance of a closed loop NARX neural network?
I have run ramin's 11 Feb 2013 at 13:13 timedelaynet code , with modifications, on the simpleseries_dataset using the same i...

más de 13 años hace | 1

Respondida
How can Backpropagation neural network could be used to solve higher order non-linear system and to make it online?
You have 5 input variables and 1 output variable. Please explain what you mean by "I have sample of remotely sensed data o...

más de 13 años hace | 0

| aceptada

Respondida
Training NARX open loop but testing closed loop
% 1. The data is an hourly data so significant correlation is in 24 hours, for the exogenous variables I just want to infeed ex...

más de 13 años hace | 0

Respondida
how can i choose the parameters of my network?
close all, clear all, clc x0 = [ -1 1 -1 1 -1 1 -1 1; -1 -1 1 1 -1 -1 1 1; -1 -1 -1 -1 1 1 1 1] x4 =[ 9 6 4 3 8 1 3 4] ...

más de 13 años hace | 1

| aceptada

Cargar más