matlab neural network toolbox - pracowniczy serwer...

54
MATLAB Neural Network Toolbox uczenie sieci (wygodnie) WYKŁAD © Piotr Ciskowski

Upload: vucong

Post on 14-May-2018

251 views

Category:

Documents


5 download

TRANSCRIPT

Page 1: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

MATLABNeural Network Toolbox

uczenie sieci(wygodnie)

WYKŁAD © Piotr Ciskowski

Page 2: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

Grupy zastosowań

1. Fitting a function - Dopasowywanie funkcji

2. Pattern recognition - Rozpoznawanie wzorców

3. Clustering data - Klasteryzacja danych

• dogłębnie - Using command-line functtons

• wygodnie - Using graphical user interfaces

Page 3: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

COMMAND LINE FUNCTIONS

– example: housing

FITTING A FUNCTION

Page 4: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Neural networks are good at fitting functions and recognizing patterns.In fact, there is proof that a fairly simple neural network can fit any practical function

• Suppose, for instance, that you have data from a housing application [HaRu78].You want to design a network that can predict the value of a house (in $1000s),given 13 pieces of geographical and real estate information

• You have a total of 506 example homesfor which you have those 13 items of data and their associated market values

• You can solve this problem in three ways:

• Use a command-line function

• Use a graphical user interface for function fitting nftool

• Use a graphical user interface nntool

Page 5: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions

1. Load the dataconsisting of input vectors and target vectors, as follows:

load house_dataset

2. Create a network

For this example, you use a feed-forward network with the default tan-sigmoid transfer function in the hidden layer and linear transfer function in the output layer. This structure is useful for function approximation (or regression) problems. Use 20 neurons (somewhat arbitrary) in one hidden layer. The network has one output neuron, because there is only one target value associated with each input vector.

net = newfit ( houseInputs , houseTargets , 20 ) ;

Page 6: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions

3. Train the network

The network uses the default Levenberg-Marquardt algorithm for training.The application randomly divides input vectors and target vectors into three sets as follows:- 60% are used for training- 20% are used to validate that the network is generalizing

and to stop training before overfitting- the last 20% are used as a completely independent test

of network generalization

To train the network, enter:

net = train ( net , houseInputs , houseTargets ) ;

Page 7: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions

3. Train the network

During training, the followingtraining window opens.This window displaystraining progresand allows youto interrupt trainingat any point by clickingStop Training

Page 8: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

• Using Command-Line Functions

3. Train the network

This training stopped when the validation error increased for six iterations,which occurred at iteration 23. If you click Performance in the training window, a plot of the training errors, validation errors, and test errors appears, as shown in the following figure

przykład 1. Fitting a function

Page 9: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions

3. Train the network

In this example, the result is reasonablebecause of the following considerations:

o The final mean-square error is small

o The test set error and the validation set error have similar characteristics

o No significant overfitting has occurred by iteration 17(where the best validation performance occurs)

Page 10: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions

4. Perform some analysis of the network response

If you click Regressionin the training window,you can performa linear regressionbetweenthe network outputsand the correspondingtargets.The following figureshows the results

Page 11: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions

4. Perform some analysis of the network response

In this case, the network response is satisfactory,and you can now use sim to put the network to use on new inputs

To get more experience in command-line operations, try some of these tasks:

• during training, open a plot window(such as the regression plot), and watch it animate

• plot from the command line with functions such asplotfit

plotregression

plottrainstate and plotperform

Page 12: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using Command-Line Functions – podsumowanie:

load house_dataset

net = newfit ( houseInputs , houseTargets , 20 )

net = train ( net , houseInputs , houseTargets )

[ net , Y , E , Pf , Af , tr ]

= adapt ( net , houseInputs , houseTargets )

plotperform

plottrainstate

plotfit

plotregression

Page 13: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

GUI – NEURAL FITTING TOOL

– example: simple fitting

FITTING A FUNCTION

Page 14: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

1. Open the Neural Network Fitting Tool with this command:

nftool

Page 15: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

3. Click Load Example Data Set in the Select Data window.The Fitting Data Set Chooser window opens

4. Select Simple Fitting Problem, and click Import. This brings you back to the Select Data window

Page 16: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

5. Click Next to display the Validate and Test Data window,shown in the following figure.The validation and test data setsare each set to 15%of the original data

Page 17: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

6. Click Next and choose the number of hidden neurons

Page 18: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

7. Click Next to see the Train network window

Page 19: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

8. Click Train

This time the training continued for the maximum of 1000 iterations

Page 20: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

9. Under Plots,click Performance.

Page 21: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

10. Under Plots,click Regression.

For thissimple fitting problem,the fit is almost perfectfor training, testing,validation data

Page 22: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

11. View the network response - Under Plots, click Fit

Page 23: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

12. Click Next in the Neural Network Fitting Tool to evaluate the network

Page 24: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 1. Fitting a function

• Using the Neural Network Fitting Tool GUI

Page 25: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

COMMAND LINE FUNCTIONS

– example: cancer

RECOGNIZING PATTERNS

Page 26: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• In addition to function fitting, neural networks are also goodat recognizing patterns

• For example, suppose you want to classify a tumor as benign or malignant,based on uniformity of cell size, clump thickness, mitosis, etc. [MuAh94].You have 699 example cases for which you have 9 items of dataand the correct classification as benign or malignant.

• As with function fitting, there are three ways to solve this problem:

• Use a command-line solution,• Use the nprtool GUI,• Use nntool.

Page 27: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions

1. Use the cancer data set as an example

This data set consists of 699 nine-element input vectorsand two-element target vectors.

Load the tumor classification data as follows:

load cancer_dataset

Page 28: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions

2. Create a network

For this example, you use a pattern recognition network,which is a feed-forward network with tan-sigmoid transfer functionsin both the hidden layer and the output layer.

As in the function-fitting example, use 20 neurons in one hidden layer:- The network has two output neurons,

because there are two categories associated with each input vector- Each output neuron represents a category- When an input vector of the appropriate category is applied to the network,

the corresponding neuron should produce a 1,and the other neurons should output a 0.

To create a network, enter this command:net = newpr ( cancerInputs , cancerTargets , 20 ) ;

Page 29: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions

3. Train the network

The pattern recognition network uses the defaultScaled Conjugate Gradient algorithm for training.

The application randomly divides the input vectors and target vectorsinto three sets:- 60% are used for training- 20% are used to validate that the network is generalizing

and to stop training before overfitting- The last 20% are used as a completely independent test

of network generalization

To train the network, enter this command:

net = train ( net , cancerInputs , cancerTargets ) ;

Page 30: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions

3. Train the network

Page 31: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions

4. Analyze the network performance

Page 32: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions

4. Analyzethe network performance

Page 33: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using Command-Line Functions - podsumowanie:

load cancer_dataset

net = newpr ( cancerInputs , cancerTargets , 20 ) ;

net = train ( net , cancerInputs , cancerTargets ) ;

plotperform

plottrainstate

plotconfusion

plotroc

Page 34: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

GUI – NEURAL PATTERN

RECOGNITION TOOL

– example: simple classes

RECOGNIZING PATTERNS

Page 35: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using the Neural Network Pattern Recognition Tool GUI

1. Open theNeuralNetworkPatternRecognitionTool window with this command:

nprtool

Page 36: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 2. Recognizing patterns

• Using the Neural Network Pattern Recognition Tool GUI

3. Click Load Example Data Set.

The Pattern Recognition Data Set Chooser window opens

Page 37: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

COMMAND LINE FUNCTIONS

– example: iris flowers

CLUSTERING DATA

Page 38: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Clustering data is another excellent application for neural networks.

• This process involves grouping data by similarity.

For example, you might perform:• Market segmentation by grouping people according to their buying patterns• Data mining by partitioning data into related subsets• Bioinformatic analysis by grouping genes with related expression patterns

• Suppose that you want to cluster flower types according to petal length,petal width, sepal length, and sepal width [MuAh94].You have 150 example cases for which you have these four measurements.

Page 39: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using Command-Line Functions

2. Create a network

For this example, you use a self-organizing map (SOM).

This network has one layer, with the neurons organized in a grid.

When creating the network, you specify the number of rows and columns in the grid:

net = newsom ( irisInputs , [ 6 , 6 ] ) ;

Page 40: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using Command-Line Functions

3. Train the network.

The SOM network uses the default batch SOM algorithm for training.

net = train ( net , irisInputs ) ;

Page 41: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using Command-Line Functions

Page 42: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using Command-Line Functions

5. For SOM training,the weight vectorassociated witheach neuron moves to become the centerof a clusterof input vectors.

In addition,neurons that areadjacent to eachotherin the topologyshould also moveclose to each otherin the input space.

The default topologyis hexagonal; to view it,click SOM Topology

Page 43: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using Command-Line Functions

6. To view the U-matrixclick SOM NeighborDistances

Page 44: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using Command-Line Functions

To get more experience in command-line operations, try some of these tasks:

• During training, open a plot window (such as the SOM weight position plot)and watch it animate

• Plot from the command line with functions such as:plotsomhits,plotsomnc,plotsomnd,plotsomplanes,plotsompos,and plotsomtop

Page 45: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

GUI – NEURAL CLUSTERING TOOL

– example: simple clusters

CLUSTERING DATA

Page 46: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

1. Open the Neural Network Clustering Tool window with this command:

nctool

Page 47: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

7. Click Train

Page 48: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some ofthe visualization toolsfor the SOM.

Under the Plots pane,click SOM Topology.

Page 49: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some ofthe visualization toolsfor the SOM.

Under the Plots pane,click SOM NeighborConnections.

Page 50: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some ofthe visualization toolsfor the SOM.

Under the Plots pane,click SOM NeighborDistances.

Page 51: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some of the visualization tools for the SOM.Under the Plots pane, click SOM Weight Planes.

Page 52: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some ofthe visualization toolsfor the SOM.

Under the Plots pane,click SOM WeightPositions.

Page 53: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some ofthe visualization toolsfor the SOM.

Under the Plots pane,click SOM Sample Hits.

Page 54: MATLAB Neural Network Toolbox - Pracowniczy serwer …staff.iiar.pwr.wroc.pl/piotr.ciskowski/dydaktyka/sieci.neuronowe/W... · (Microsoft PowerPoint - W.13.A.b. Narz dzia - MATLAB

przykład 3. Clustering data

• Using the Neural Network Clustering Tool GUI

8. Investigate some ofthe visualization toolsfor the SOM.

Under the Plots pane,click SOM Sample Hits.