GithubHelp home page GithubHelp logo

mariamingallonmm / ai-perceptronlearningalgorithm-a3 Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 1.0 83.8 MB

This code implements the perceptron learning algorithm ("PLA") for a linearly separable dataset.

License: MIT License

Python 100.00%
ai artificial-intelligence perceptron-learning-algorithm perceptron perceptron-neural-networks machine-learning

ai-perceptronlearningalgorithm-a3's Introduction

AI-PerceptronLearningAlgorithm-A3

The assignment includes three problems as detailed below:

  1. Perceptrong Learning Algorithm
  2. Multivariate Linear Regression
  3. Classification with support vector classifiers

Problem 1: Perceptron Learning Algorithm

This code implements the perceptron learning algorithm ("PLA") for a linearly separable dataset.

First, we visualise the dataset which contains 2 features. We can see that the dataset can be clearly separated by drawing a straight line between them. The goal is to write an algorithm that finds that line and classifies all of these data points correctly.

The output csv file contains the values of w1, w2 and b which define the 'threshold' line. The last row will be the most accurate one. Each time it goes through each of the examples in 'input1.csv', it adds a new line to the output file containing a comma-separated list of the weights w_1, w_2, and b (bias) in that order.

Upon convergence, the program stops, and the final values of w_1, w_2, and b are printed to the output file (output1.csv). This defines the decision boundary that your PLA has computed for the given dataset.

About the Python version

The code in the main folder is written for python 3.7 and it includes plotting functions (plotly). However those are disabled when executing the code in python 3.6 from the command line in the format specified below for Vocareum. Refer to subfolder py36 for a version of the code that runs in python 3.6 and Vocareum.

Execute as from Vocareum (version python 3.6)* $ python3 problem1.py input1.csv output1.csv

Example of outputs for Python 3.7 version

The following is a sample of the output obtained when running the code in problem1.py as it is in Python 3.7.

Example: Initial Dataset and provided Output Threshold

Useful references:

Problem 2: Multivariate Linear Regression Algorithm

In this problem, we work on linear regression with multiple features using gradient descent.

Running the code will generate an output file called output2.csv containing a comma-separated list of:

  • alpha (slope)
  • number_of_iterations (n = 100 as required in the assignment)
  • betas values for: b_0, b_age, and b_weight (the two last betas are the features in X)

A total of ten entries are produced, one per learning rate applied. Nine learning rates were provided in the assignment. The last learning rate is my own choice. Learning rates are as follows: [0.001, 0.005, 0.01, 0.05, 0.1, 0.5, 1, 5, 10, 0.02]

The outputs csv file represent the regression models that the gradient descents have computed for the given dataset.

About the Python version

As above for problem 1.

Execute as from Vocareum (version python 3.6)* $ python3 problem2.py input2.csv output2.csv

Useful references:

Problem 3: Classification with support vector classifiers

This code implements a support vector classifier using the sklearn package to learn a classification model for a chessboard-like dataset.

The input dataset is available as input3.csv. The first step is to make a scatter plot of the dataset showing the two classes with two different patterns. The result is this plot:

Initial Dataset and provided Output Threshold

Next, we use SVM with different kernels to build a classifier. We split the data into training (60%) and testing (40%). We are also using stratified sampling (i.e. same ratio of positive to negative in both the training and testing datasets). It requires using the option stratify from sklearn.train_test_split on the 'y' vector, which is the 'label' column of the input dataset.

The assignment also asks to use cross validation (with the number of folds k = 5) instead of a validation set. However, scaling/normalising the data is not required for this question of the assignment. As anticipated above, we will use the train-test splitting and cross validation functionalities readily available in sklearn as follows:

C-support vector classification

For this part we will use sklearn C-support vector classification.

We will use sklearn.grid_search to find the optimal parameters using the training data. Next, we record the corresponding best score (training data accuracy) achieved. Then we apply the testing data to the model, and record the actual test score. Both scores will be a number between zero and one which we will need to reflect in the outputs csv file.

SVM with Linear Kernel

Observe the performance of the SVM with linear kernel. Use sklearn.grid_search to find a good setting of parameters to obtain high classification accuracy. Specifically, try values of C = [0.1, 0.5, 1, 5, 10, 50, 100].

SVM with Polynomial Kernel

As above for linear kernel but now try values of C = [0.1, 1, 3], degree = [4, 5, 6], and gamma = [0.1, 0.5].

SVM with RBF Kernel

As above but now try values of C = [0.1, 0.5, 1, 5, 10, 50, 100] and gamma = [0.1, 0.5, 1, 3, 6, 10].

Logistic Regression

As above with values of C = [0.1, 0.5, 1, 5, 10, 50, 100].

k-Nearest Neighbors

As above with values of n_neighbors = [1, 2, 3, ..., 50] and leaf_size = [5, 10, 15, ..., 60].

Decision Trees

As above with values of max_depth = [1, 2, 3, ..., 50] and min_samples_split = [2, 3, 4, ..., 10].

Random Forest

As above with values of max_depth = [1, 2, 3, ..., 50] and min_samples_split = [2, 3, 4, ..., 10].

Submission details

A file named 'output3.csv' including:

  • an entry for each of the seven methods used;
  • for each method, print a comma-separated list as shown in the example including:
    • method name,
    • best score,
    • test score
  • metrics need to be expressed with as many decimal places as you possible.

Overview of output3.csv to be populated: svm_linear,[best_score],[test_score] svm_polynomial,[best_score],[test_score] svm_rbf,[best_score],[test_score] logistic,[best_score],[test_score] knn,[best_score],[test_score] decision_tree,[best_score],[test_score] random_forest,[best_score],[test_score]

About the Python version

As above for problem 1.

Execute as from Vocareum (version python 3.6)* $ python3 problem3.py input3.csv output3.csv

Plotting the results

Initial dataset

Initial dataset

SVM with Linear Kernel

SVM with Linear Kernel

SVM with Polynomial Kernel

SVM with Polynomial Kernel

SVM with RBF Kernel

SVM with RBF Kernel

Logistic Regression

Logistic Regression

k-Nearest Neighbors

k-Nearest Neighbors

Decision Trees

Decision Trees

Random Forest

Random Forest

Useful references:

ai-perceptronlearningalgorithm-a3's People

Contributors

mariamingallonmm avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

vejmin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.