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

10 years ago | 0

| accepted

Answered
Forecasting 4 steps ahead with NN toolbox
Search the NEWSGROUP and ANSWERS using NARXNET GREG NARXNET GREG TUTORIAL Hope this helps. Greg

10 years ago | 0

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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

Answered
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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

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

10 years ago | 1

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

10 years ago | 1

| accepted

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

10 years ago | 0

| accepted

Answered
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

10 years ago | 0

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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

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

10 years ago | 0

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

10 years ago | 4

| accepted

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

10 years ago | 0

| accepted

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

10 years ago | 0

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

10 years ago | 0

| accepted

Answered
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

10 years ago | 0

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

10 years ago | 0

| accepted

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

10 years ago | 0

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

10 years ago | 0

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

10 years ago | 0

| accepted

Answered
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

10 years ago | 1

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

10 years ago | 0

| accepted

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

10 years ago | 0

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

10 years ago | 4

| accepted

Load more