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

más de 14 años hace | 0

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

más de 14 años hace | 0

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

más de 14 años hace | 1

| aceptada

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

más de 14 años hace | 1

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

| aceptada

Respondida
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

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 1

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 1

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 2

| aceptada

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

más de 14 años hace | 1

| aceptada

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

más de 14 años hace | 0

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

más de 14 años hace | 0

Cargar más