Neuroph studio 入门教程

时间:2023-03-09 03:04:50
Neuroph studio 入门教程

PERCEPTRON

Perceptron is a simple two layer neural network with several neurons in input layer, and one or more neurons in output layer. All neurons use step transfer function and network can use LMS based learning algorithm such as Perceptron Learning or Delta Rule. This network can be used as a linear classifier, and it can only be applied to linear separable problems.

Neuroph studio 入门教程

To create and train Perceptron neural network using Neuroph Studio do the following:

  1. Create Neuroph Project.
  2. Create Perceptron network.
  3. Create training set (in main menu choose Training >New Training Set).
  4. Train network
  5. Test trained network

Step 1. Create Neuroph project.

Click File > New Project.

Neuroph studio 入门教程

Select Neuroph Project, click Next.

Neuroph studio 入门教程

Enter project name and location, click Finish.

Neuroph studio 入门教程

Project is created, now create neural network.

Step 2. Create Perceptron network.

Click File > New File

Neuroph studio 入门教程

Select project from Project drop-down menu, select Neural Network file type, click next.

Neuroph studio 入门教程

Enter network name, select Perceptron network type, click next.

Neuroph studio 入门教程

In new perceptron dialog enter number ofneurons in input (2) and output layer (1) , choose Perceptron Learningand click Create button.

Neuroph studio 入门教程

This will create the Perceptron neural network with two neurons in input, and one in output layer. By default, all neurons with Steptransfer functions.

Neuroph studio 入门教程

Now we shall train this simple network to learn logical AND function. First we have to create the training setaccording to AND truth table.

Step 3.  To create training set, click File>New File to open Data Set wizard.

Neuroph studio 入门教程

Select DataSet file type, then click next.

Neuroph studio 入门教程

Enter training set name, number of inputs andoutputs as shown on picture below and click Finish button.

Neuroph studio 入门教程

Then create training set by entering training elements as input and desired output values of neurons in input and outputlayer. Use Add row button to add new elements, and click OK button when finished.

Neuroph studio 入门教程

Step 4. Training network. To start network training procedure, drag n' drop training set to corresponding field in the network window, and 'Train' button will become enabled in toolbar. Click the 'Train' button to open Set Learning Parameters dialog.

Neuroph studio 入门教程

In Set Learning parameters dialoguse default learning parameters, and just click the Train button.

Neuroph studio 入门教程

When the Total Net Error is zero, thetraining is complete.

Neuroph studio 入门教程

Step 5. After the training is complete, you can test the network for the whole training set by selecting training set to test, and clicking Test button..

Neuroph studio 入门教程

This will show test results in the new tab.

Neuroph studio 入门教程

To test single input, use Set Input button. This will open Set Network Input dialog in which you can enter input values for network delimited withspace.

Neuroph studio 入门教程

The result of network test is shown on picture below. Network learned logical AND function. As we can see the outputneuron has value 1. Test the network to see how it behaves for other input values.

Neuroph studio 入门教程

PERCEPTRON IN JAVA CODE

package org.neuroph.samples;

import java.util.Arrays;
import org.neuroph.core.NeuralNetwork;
import org.neuroph.nnet.Perceptron;
import org.neuroph.core.data.DataSet;
import org.neuroph.core.data.DataSetRow;

/**
* This sample shows how to create, train, save and load simple Perceptron neural network
*/
public class PerceptronSample {

public static void main(String args[]) {

// create training set (logical AND function)
DataSet trainingSet = new DataSet(2, 1);
trainingSet.addRow(new DataSetRow(new double[]{0, 0}, new double[]{0}));
trainingSet.addRow(new DataSetRow(new double[]{0, 1}, new double[]{0}));
trainingSet.addRow(new DataSetRow(new double[]{1, 0}, new double[]{0}));
trainingSet.addRow(new DataSetRow(new double[]{1, 1}, new double[]{1}));

// create perceptron neural network
NeuralNetwork myPerceptron = new Perceptron(2, 1);

// learn the training set
myPerceptron.learn(trainingSet);

// test perceptron
System.out.println("Testing trained perceptron");
testNeuralNetwork(myPerceptron, trainingSet);

// save trained perceptron
myPerceptron.save("mySamplePerceptron.nnet");

// load saved neural network
NeuralNetwork loadedPerceptron = NeuralNetwork.createFromFile("mySamplePerceptron.nnet");

// test loaded neural network
System.out.println("Testing loaded perceptron");
testNeuralNetwork(loadedPerceptron, trainingSet);

}

public static void testNeuralNetwork(NeuralNetwork nnet, DataSet tset) {

for(DataSetRow dataRow : tset.getRows()) {

nnet.setInput(dataRow.getInput());
nnet.calculate();
double[ ] networkOutput = nnet.getOutput();
System.out.print("Input: " + Arrays.toString(dataRow.getInput()) );
System.out.println(" Output: " + Arrays.toString(networkOutput) );

}

}

}

EXTERNAL LINKS

To learn more about the Perceptrons see: