Skip to content

An implementation of the perceptron algorithm as a solution to a university question

Notifications You must be signed in to change notification settings

Yam-Arieli/Perceptron-Learning-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Problem from the course "Statistical Learning" of the Open University of Israel

This is an implementation of the perceptron algorithm

Generate a linearly separable data set of size N=20 as follows:

Choose a random line in the plane (d=2) as your target function f, where one side of the line maps to +1 and the other maps to -1. Choose the inputs of the data set as random points in the plane and evaluate the target function on each input to get the corresponding output.

  1. Run the Perceptron Learning Algorithm on the data set above.
    1. Report the number of updates that the algorithm takes before converging.
    2. Plot the training set, the target function f, and the final hypothesis g in the same figure.
    3. Plot the training set, the target function f, and the final hypothesis g in the. same figure.
    4. Randomly generate a test data of size 100 and calculate the fraction of points where f and g disagree on this data set. same figure.

  2. Repeat (1) with another randomly generated data set of size N=20. Compare your results with (1).

  3. Repeat (1) with another randomly generated data set of size N=100. Compare your results with (1).

  4. Repeat (1) with another randomly generated data set of size N=1000. Compare your results with (1).

  5. Modify the algorithm such that it takes inputs of dimension d=10 instead of d=2.
    Randomly generate a linearly separable data set of size N=1,000 and feed the data set to the algorithm.
    Repeat the algorithm on the same data set for 100 experiments where in the iterations of each experiment pick x(t) randomly instead of deterministically.
    Plot a histogram for the number of updates that the algorithm takes to converge.

  6. Summarize your conclusions with respect to accuracy and running time as a function of N and d.

About

An implementation of the perceptron algorithm as a solution to a university question

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published