An open API service indexing awesome lists of open source software.

https://github.com/udacity-machinelearning-internship/perceptron-algorithm

Implementing perceptron alogorithm in python using Numpy and Pandas
https://github.com/udacity-machinelearning-internship/perceptron-algorithm

machine-learning perceptron perceptron-learning-algorithm

Last synced: 3 months ago
JSON representation

Implementing perceptron alogorithm in python using Numpy and Pandas

Awesome Lists containing this project

README

        

![Perceptron_Algorithm](https://github.com/BaraSedih11/Perceptron-Algorithm/assets/98843912/4a7542a9-fdbf-4171-94fc-679f0c7f2885)

![GitHub repo size](https://img.shields.io/github/repo-size/BaraSedih11/Perceptron-Algorithm) ![GitHub repo file count (file type)](https://img.shields.io/github/directory-file-count/BaraSedih11/Perceptron-Algorithm) [![Python Version](https://img.shields.io/badge/python-3.8-blue)](https://www.python.org/downloads/release/python-380/)
[![Pip Version](https://img.shields.io/badge/pip-21.0-orange)](https://pypi.org/project/pip/21.0/)
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/BaraSedih11/Perceptron-Algorithm/main)
[![Version](https://img.shields.io/badge/version-v1.0.0-blue)](https://github.com/BaraSedih11/Perceptron-Algorithm/releases/tag/v1.0.0)
[![Contributors](https://img.shields.io/github/contributors/BaraSedih11/Perceptron-Algorithm)](https://github.com/BaraSedih11/Perceptron-Algorithm/graphs/contributors)
![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/BaraSedih11/Perceptron-Algorithm)

This repository contains an implementation of Perceptron Algorithm using Python.

## Overview

In this repository, we demonstrate how to perform perceptron algorithm using Python. We utilize libraries such as NumPy and pandas to implement the model. Additionally, we provide a simple example along with explanations to help you understand how to apply perceptron algorithm to your own datasets.

## Requirements

To run the code in the Jupyter Notebook, you need to have Python installed on your system along with the following libraries:

- NumPy
- pandas

You can install these libraries using pip:

```bash
pip install numpy pandas

```

## Usage

1. Clone this repository to your local machine:

```bash
git clone https://github.com/BaraSedih11/Perceptron-Algorithm.git
```

2. Navigate to the repository directory:

```bash
cd PerceptronAlgorithm
```

3. Open and run the Jupyter Notebook `PerceptronAlgorithm.ipynb` using Jupyter Notebook or JupyterLab.

4. Follow along with the code and comments in the notebook to understand how perceptron algorithm is implemented using Python.

## Acknowledgements

- [NumPy](https://numpy.org/): The NumPy library for numerical computing in Python.
- [pandas](https://pandas.pydata.org/): The pandas library for data manipulation and analysis in Python.