Answered
Neural network 2D classification - class assigment.
Code your target matrix, t, with columns of the 4-dimensional unit matrix eye(4). For example: clear all, clc class =[rand...

14 years ago | 0

Answered
Image classification
Yes. Search the Newsgroup using image classification Hope this helps. Greg

14 years ago | 0

Answered
How to use image input with Neural Network?
If you have N images of size I =row*column, each image is columnized to form a column in the input matrix with size [I N ] =s...

14 years ago | 1

| accepted

Answered
Satellite image classification using neural networks
Kohonen created SOM for visualization, not regression or classification. For classification he created LVQ and LVQ2. All thre...

14 years ago | 1

| accepted

Answered
Algorithm for comparing Hand drawn alphabets and digits with printed standard alphabets and digits.
If you decide to use a feedforward neural network, use 62 output nodes to indicate the assigned class of the input. The target m...

14 years ago | 0

Answered
How take weight values for P nad N in a BPN network for face recognition
Normalization helps to prevent large signals from causing bounded activation functions in the first hidden layer ( like tansig a...

14 years ago | 0

| accepted

Answered
Data classification with neural networks - how to improve existing network.
N0 = sample size c = number of classes (states) I = dimensionality of input vectors O = c = dimensionality of output v...

14 years ago | 0

| accepted

Answered
Identification of NARX problem with death time between Inputs and Outputs
The code looks It looks reasonable if your assumption of the effective signal length is correct. Hope this helps. Greg

14 years ago | 0

Answered
multiple input/output problem in ANN
You can use NEWFF or NEWRB. The former is probably easier. I do not understand the last sentence because you are not using ...

14 years ago | 0

| accepted

Answered
multiple input/output problem in ANN
Your notation is confusing. Conventional statistics terminology considers a sample as a subset of a population of multidimension...

14 years ago | 0

Answered
Forecasting product demand with neural nets
Search heath NEWFFTD for sample prediction code. I have not used NARX yet. Hope this helps. Greg

14 years ago | 1

| accepted

Answered
writing mistake using GRNN or NEWFF?
This is a conditional classification problem. Use 4 outputs with LOGSIG or SOFTMAX output activation functions. The training t...

14 years ago | 0

Answered
How can cross validate neural networks
What previous question and answers? What is the dimensionality of your data? If you only have 18 samples, you probably can...

14 years ago | 0

| accepted

Answered
SOM neural network help - for classifying data- yes, it can be done
Kohonen created SOM for visualization, not classification. He extended SOM to LVQ for the purposes of classification. Sinc...

14 years ago | 0

| accepted

Answered
How to calculate accracy of neural network using ANN toolbox matlab
Number of classes c = ? Number of input/target examples per class Ni = ? % i= 1:c Dimensionality of input I = ? Dimen...

14 years ago | 0

| accepted

Answered
Regarding the use of Neural network toolbox
Take a look at the Control System Toolbox documentation, examples and demos. Hope this helps. Greg

14 years ago | 0

Answered
Is it possible to solve a multi-input-multi-output control problem by using Matlab neural network toolbox
Should be straightforward if you have enough data so that the number of training equations, Neq, is significantly larger than th...

14 years ago | 0

| accepted

Answered
SOM training/testing-sim-trainr
SOFM is not meant for classification. Therefore Kohonen extended it to LVQ (lvqnet). However, the MLP (newff, patternnet) and...

14 years ago | 0

| accepted

Answered
how to get fix output for neural network?
RNG = random number generator ENSEMBLE = a combination of neural nets. Search the term in comp.ai.neural-nets and comp.so...

14 years ago | 0

Answered
how to preprocess dataset in neural network toolbox
[ I N ] = size(p) minp = repmat(min(p,[],2),1,N); maxp = repmat(max(p,[],2)',1,N); pn = (p-minp)./(maxp-minp); Hop...

14 years ago | 0

| accepted

Answered
Help!!! Feature Extraction or SIgnal processing for spectrum waveform!!!
help patternnet doc patternet Hope this helps. Greg

14 years ago | 0

Answered
Neural Network Output
Typically, the inability to match net output with mathematical caalculations involves the default MAPMINMAX normalization. Ho...

14 years ago | 0

Answered
Inverse transformation for Sim
No. However, you can train another net that will take a target as input and estimate the original input. Obviously, the ...

14 years ago | 0

| accepted

Answered
NN - optimization
Search the Newsgroup for heath newrb There are several posts discussing design strategies. If you start with the most...

14 years ago | 0

| accepted

Answered
Neural Network
The technique you should use is called clustering. I would search the Newsgroup and documentaion using combinations of the sea...

14 years ago | 1

| accepted

Answered
how to get fix output for neural network?
In general, weight initialization and data division involve random numbers. Therefore 1. Intialize the RNG to the same stat...

14 years ago | 0

Answered
MSE error
This is common behavior. The type of training that uses a validation set is called "Early Stopping" and "Stopped Training". ...

14 years ago | 2

| accepted

Answered
Reproducing Result
In general, initial weights and trn/val/tst data division uses random number generation. Therefore, to obtain reproducible re...

14 years ago | 1

| accepted

Answered
ANN
ANN : Malathy asked on 24 Feb 2012 at 7:49 My input array is -----SNIP My output array is -----SNIP I used Neu...

14 years ago | 0

Answered
different result is obtained for the same input using self-organizing map
Initialize the random number generator to the same intial state; otherwise the results will be different. Hope this helps. ...

14 years ago | 0

Load more