https://github.com/matin-ghorbani/perceptron
Implement a perceptron from scratch
https://github.com/matin-ghorbani/perceptron
abalone-dataset boston-housing-price-prediction from-scratch machine-learning perception-neuron perceptron regression
Last synced: 3 months ago
JSON representation
Implement a perceptron from scratch
- Host: GitHub
- URL: https://github.com/matin-ghorbani/perceptron
- Owner: matin-ghorbani
- License: mit
- Created: 2024-05-12T12:21:37.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-05-12T12:55:33.000Z (12 months ago)
- Last Synced: 2024-11-29T17:25:56.879Z (5 months ago)
- Topics: abalone-dataset, boston-housing-price-prediction, from-scratch, machine-learning, perception-neuron, perceptron, regression
- Language: Jupyter Notebook
- Homepage:
- Size: 2.18 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Perceptron (Perception Neuron) From Scratch
***I test it on 3 datasets:***
- Abalone
- Boston House Price
- Employee's Salary### Install Dependencies:
```bash
pip install -r requirements.txt
```## Employee's salary 💵
### I made a linear dataset using scikit-learn library:
- with 100 samples of employees
- I made a years of experience range form 0 to 20
- I made a salary range form 20000 to 150000
### First try with 3 epochs:
### Best try with 20 epochs:
## Abalone 🐚
### First try with 5 epochs:
### Best try with 20 epochs:
