Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 2.6 KB

File metadata and controls

55 lines (33 loc) · 2.6 KB

Perceptrons_As_Logical_Operators

GitHub repo size GitHub repo file count (file type) Python Version Pip Version GitHub last commit (branch) Version Contributors GitHub pull requests

This repository contains an implementation of Perceptrons as Logical Operators using Pandas.

Overview

In this repository, we'll see one of the many great applications of perceptrons. As logical operators! You'll have the chance to create the perceptrons for the most common of these, the AND, OR, and NOT operators. And then, we'll see what to do about the elusive XOR operator. Let's dive in!

Requirements

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

  • pandas

You can install these libraries using pip:

pip install pandas

Usage

  1. Clone this repository to your local machine:
git clone https://github.com/BaraSedih11/Perceptrons-as-Logical-Operators.git
  1. Navigate to the repository directory:
cd perceptronAsLogicalOperators
  1. Open and run the Jupyter Notebook PerceptronAsLogicalOperators.ipynb using Jupyter Notebook or JupyterLab.

  2. Follow along with the code and comments in the notebook to understand how perceptron algorithms as logical operators is implemented using Python.

Acknowledgements

  • pandas: The pandas library for data manipulation and analysis in Python.