Réponse apportée
how to create dataset for classification and pattern recognition (neural network)
For c classes: Create two matrices from N pairs of I-dimensional input vectors and c-dimensional {0,1} unit vector targets. The ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Forecasting 4 steps ahead with NN toolbox
Search the NEWSGROUP and ANSWERS using NARXNET GREG NARXNET GREG TUTORIAL Hope this helps. Greg

presque 11 ans il y a | 0

Réponse apportée
NARX - 2hr Prediction of Cargo Temperature on transit
1. I DO NOT RECOMMEND TRYING TO USE THE REMOVEDELAY COMMAND. As far as I am concerned, it is useless. 2. If you want help ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Could you please help me understand this result? NARX net with removedelay -> unexpected output
I have found the removedelay command USELESS and have recommended it's nonuse in at least one of my tutorials (NEWSGROUP and/or ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
rbnn functions works with the small data set but the one i want to use doesnot work at all. the simulation is too slow and i have to resatart my matlab again. need help what should i do
1. You probably do not need more than 10 to 30 times as many input/target training pairs as you have weights and parameters to ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Neural Network with Integer inputs/outputs
From what I can discern from searching the internet. The answer is No. The best you can do is round some of the output va...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Neural Network - Pattern recognition network
You have to set thresholds on the estimated probability outputs. The target vectors are columns from eye(3) The 3 dimension...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Can we get the probablity considered in classification using probablistic neural networks?
I don't think so. I'm only getting 0s and 1s. Try patternnet or newpr. Hope this helps. Greg

presque 11 ans il y a | 0

| A accepté

Réponse apportée
i have a house holding dataset data include (date, day, time,meter reading, classes). i want to use this data set in neural network for pattern recognition. how can i convert this dataset to be used in naive bayes classifiers and neural networks???
For neural networks, the input is a matrix of N I-dimensional input vectors: [ I N ] = size(input); The corresponding out...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
I want denormalization of my prediction data
>> 10^log10(7) ans = 7 >> exp(1)^log(7) ans = 7 Hope this helps. *Thank yu for formally accepting my answer* ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Reference to "adaptwb" function in Neural Network toolbox.
Have you tried the 3 command line documentation sources? help adapt doc adapt type adapt Hope this helps. *Tha...

presque 11 ans il y a | 1

Réponse apportée
how to use two separate files for ANN?
> Hi Greg,Thank you so much for your attention. 1- I wanted to fill some data that I missed during measurement by ANN and us...

presque 11 ans il y a | 1

| A accepté

Réponse apportée
How can use (if, end) inside the neural network script?
Search the NEWSGROUP and ANSWERS with newff Ntrials Hope this helps *Thank you for formally accepting my ANSWER* Gr...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
What's the meaning of the parameter, "input delay", in Neural network toolkit?
ID = [0:1} means y(t+1) = f1(x(t+ID)) = f2(x(t+1),x(t)) Hope this helps. Greg

presque 11 ans il y a | 0

Réponse apportée
How can I develop a neural network to predict amount rain in an area
help narnet doc narnet Search the NEWSGROUP and ANSWERS for NEWSGROUP ANSWERS narnet ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
What is the cause of my patternnet apapt error?
% You are trying to design a classifier that classifies 101-dimensional vectors into one of 133 classes. using a net with 101 hi...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
How to manually implement of Feed Forward Neural Network processing functions?
Your normalization equation incorrect. There are separate normalization equations for the input x and target t which I'm sure y...

presque 11 ans il y a | 0

Réponse apportée
Why is my neural network performing worse as the number of hidden layers increases?
The ultimate goal is too obtain a net that performs well on non-training data that comes from the same or similar source as the ...

presque 11 ans il y a | 4

| A accepté

Réponse apportée
i want a simple matlab code to Implement backpropagation (BP) on feedforward neural n/w (FFNW).
Most of the MATLAB examples with 0 1 outputs are classification/pattern-recognition problems. For documentation see help pat...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Auto correlation and cross correlation with NARXnet to find ID and FD
[ I N ] = size(inputs); % [1 2323] [ O N ] = size(targets); % [1 2323] MSE00 = mean(var(targets',1)) % 8.0153e+08 %GEH...

presque 11 ans il y a | 0

Réponse apportée
Auto correlation and cross correlation with NARXnet to find ID and FD
Look for my recent NEWSGROUP posts (2015) greg nncorr 2015 Especially 8 Jul 2015 OPENLOOP NARNET TUTORIAL EXAMPLE 2...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Help using Neural Network to predict new outputs from new data.
It is as simple as ynew = net(xnew); Hope this helps. *Thank you for formally accepting my answer* Greg

presque 11 ans il y a | 0

Réponse apportée
I have trained a neural network using matlab and performed retrain for 3 times and got the result. For the fourth time want to perform training with only input data . Which means for the fourth time software has to decide the target value
Improper use of terminology leads to a confusing post. What is the purpose of retraining the net 3 times? ... The 1st 2 d...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
How to interpret an answer given by the Neural Network?
Please 1. Format your post so that comments and executables are on different lines 2. Use the notations a. Matri...

presque 11 ans il y a | 0

Réponse apportée
Pattern Recognition with single input and single output when Rule defined by sign of a Quadratic function
1. If you plot the target t = sign(x.*(1-x)). You will see that you need very closely spaced points only near the discontinuitie...

presque 11 ans il y a | 0

Réponse apportée
Odd data preparation with NARX network
% You say that you have no delays. If you have no delays you should be using fitnet or patternnet. % However, your code show...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
whether de noising is needed for neural network based segmentation
It depends on how much noise is present. *Thank you for a formally accepting my answer* Greg

presque 11 ans il y a | 1

Réponse apportée
forecasting and extrapolation of Time series using neural network algorithm
It may be fruitful to read posts in reverse chronological order SEARCH WORDS NEWSGROUP ANSWERS NARNET TUTORIAL...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
how to know the indices of the test data?
Test data is not to be used to determine parameter settings. It is to be used only for obtaining UNBIASED estimates of perfor...

presque 11 ans il y a | 0

Réponse apportée
why doesn't overfitting happen ?
You misunderstand. The sin is not overfitting. It is overtraining a net that is overfit. Overfitting happens when there are m...

presque 11 ans il y a | 4

| A accepté

Charger plus