This repository contains basic implementations of Artificial Neural Network (ANN) concepts, including the McCulloch-Pitts neuron model, simple perceptron, and linear separability.
ANN-Practical/
├── McCulloch_pitt_model.py
├── simple_preceptron.py
├── linear_seperable.py
├── README.md
├── LICENSE
└── .gitignore
- McCulloch-Pitts Neuron Model
- Simple Perceptron Implementation
- Linear Separability Demonstration
- Basic ANN Concepts
- Python 3.10+
- NumPy
- Matplotlib (if used)
Clone the repository:
git clone https://github.com/ashislife/ANN-practical-.gitNavigate to the project directory:
cd ANN-practical-Install the required dependencies:
pip install numpy matplotlibRun any example individually:
python McCulloch_pitt_model.pypython simple_preceptron.pypython linear_seperable.py| File | Description |
|---|---|
McCulloch_pitt_model.py |
Implements the McCulloch-Pitts neuron model. |
simple_preceptron.py |
Demonstrates the implementation of a simple perceptron. |
linear_seperable.py |
Demonstrates linear separability using a perceptron model. |
This project is licensed under the MIT License.