This repository contains an implementation of Perceptrons as Logical Operators using Pandas.
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!
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
- Clone this repository to your local machine:
git clone https://github.com/BaraSedih11/Perceptrons-as-Logical-Operators.git
- Navigate to the repository directory:
cd perceptronAsLogicalOperators
-
Open and run the Jupyter Notebook
PerceptronAsLogicalOperators.ipynb
using Jupyter Notebook or JupyterLab. -
Follow along with the code and comments in the notebook to understand how perceptron algorithms as logical operators is implemented using Python.
- pandas: The pandas library for data manipulation and analysis in Python.