Answered
narx network producing different outputs for same input
If you are reusing the same trained network, the difference is probably caused by different initial delayed values. If you ar...

14 years ago | 0

| accepted

Answered
Adapt and sim produces very different outputs
ADAPT is a learning algorithm that updates weights after the presentation of each input vector. Therefore, each output correspon...

14 years ago | 1

Answered
Is there any RBF neural network function available for classification problem?
Yes. 1. Divide the data 2. Normalize or standardize the training set 3. Use the training set statistics (min/max or mea...

14 years ago | 0

Answered
How can cross validate neural networks
1. There is an error in the NEWFIT documentation. 'linear' is not a valid option; replace with 'purelin'. 2. NEWFIT calls NEW...

14 years ago | 0

Answered
scale data for NN
1. Derive a linear tranformation xn(x) = a.*x + b such that xn( x = min(x) ) = -1 xn( x = max(x) ) = +1 2. Deriv...

14 years ago | 0

Answered
Training neural network for facial expression classification
Use the vectorization operator, : , to convert each processed image to a column vector. The corresponding target vector is a co...

14 years ago | 0

| accepted

Answered
unsupervised Learning Vector Quantization (LVQ)
Kohonen's LVQs are supervised versions of SOM. His books provide the details. help newsom doc newsom Hope this helps. ...

14 years ago | 0

| accepted

Answered
scale data for NN
You do not have to scale the data because variables are AUTOMATICALLY scaled to {-1,1} with MAPMINMAX by NEWFF, FITNET, PATTE...

14 years ago | 0

| accepted

Answered
Is there any RBF neural network function available for classification problem?
108 results for heath newrb classification Hope this elps. Greg

14 years ago | 0

Answered
Is there any RBF neural network function available for classification problem?
help newrb doc newrb Search the newsgroup using heath newrb Hope this helps. Greg

14 years ago | 0

| accepted

Answered
Help for mathematical equation of regression in ANN
hiddenLayerSize = 30; 1. TOO LARGE AND INCOMPATIBLE WITH NEXT COMMAND net = newff(mi...

14 years ago | 0

Answered
Using Backpropagation Neural Nerwok for forecasting simple data
Search the Newsgroup using heath newfftd Hope this helps. Greg

14 years ago | 0

| accepted

Answered
Help for mathematical equation of regression in ANN
This question has been asked many times in both the Newsgroup and Answers. If you do not use the default normalizations of input...

14 years ago | 0

| accepted

Answered
Regression function of Neural Networks
In general, there is no way to get "the function for each variable". If you vary one variable with all of the other variables...

14 years ago | 0

| accepted

Answered
Regression function of Neural Networks
See my answer in the recent Answers post titled: Write code for NN using the Weight and Bias data retrieved from the NN tool ...

14 years ago | 0

Answered
how to testing single input in perceptron??
error = t - hardlim(w1*p1+w2*p2+b) Why don't you have a bias b ?? Hope this helps. Greg

14 years ago | 0

Answered
how to train neural network on vector of vectors
If the training set consists of N pairs of I-dimensional input vectors and corresponding O-dimensional target vectors, the siz...

14 years ago | 0

| accepted

Answered
Artificial Neural Network Question
help msereg doc msereg type msereg Hope this helps. Greg

14 years ago | 0

| accepted

Answered
determine input output neural network
Q1. at initial program code, the nosetrain (& also nosetest) is something that we recall from excel file. is it?? if its rig...

14 years ago | 0

Answered
Write code for NN using the Weight and Bias data retrieved from the NN tool box
Searching the Newsgroup using IW heath close all, clear all, clc [ x, t ] = simplefit_dataset; [ I N ] = size(x) ...

14 years ago | 0

Answered
determine input output neural network
That's a job for you. If you have a question on any commands let me know. You can use the debugger, a very small data set ...

14 years ago | 0

Answered
Neural network outputs in each epoch
I think that is only possible if you change the source code. If you try M runs of 1 epoch long, at each new call,the internal...

14 years ago | 0

| accepted

Answered
determine input output neural network
% determine input output neural network % Syafiq Muhammad asked about 19 hours ago % Latest activity: Edit by Syafiq Muhammad...

14 years ago | 0

Answered
neural network toolbox classification?
The comp.ai.neural-nets FAQ recommends bipolar binary coding { -1, 1} for input categorical variables and unipolar binary coding...

14 years ago | 0

Answered
neural network toolbox classification?
Inputs to a MATLAB TBX NN are column vectors. The first three inputs are categorical and can be represented by binary numbers. F...

14 years ago | 0

Answered
Setting up Inputs and Targets for neural networks
For N pairs of of I-dimensional inputs and corresponding O-dimensional outputs [ I N ] = size(input) % [ 20 5e5 ] [ O N ]...

14 years ago | 1

| accepted

Answered
Train and Simulate Neural Networks
[I N ] = size(p) [ O N ] = size(t) H = 10 net =newff(minmax(p),[H,O]); [net,tr1] = train(net,p,t); o1 = sim(net,...

14 years ago | 0

| accepted

Answered
Multiple inputs using NEWFF
[I N ] = size(p) [O N ] =size(t) net = newff(p,t,H); Results in a FFMLP with I-H-O node topology. Hope this helps. ...

14 years ago | 0

Answered
Custom NN in matlab
If you have N I/O pairs with I-dimensional input vectors and corresponding O-dimensional output target vectors, the size of the ...

14 years ago | 0

| accepted

Answered
Strange results with Matlab Neural Network Toolbox
Please do not email followups. Stay within Answers. If the following does not help, reply here, not via email. % On Mar 31...

14 years ago | 0

Load more