Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
smakosh committed Feb 8, 2018
1 parent 34aba9e commit 6854e36
Showing 1 changed file with 36 additions and 21 deletions.
57 changes: 36 additions & 21 deletions README.md
@@ -1,29 +1,44 @@
# The Perceptron neural net
A neural net from scratch to help you understand the maths behind neural networks ! make sure to read the medium article I've written !

You will find in the repo a jupyter notebook of one perceptron made from scratch & one with sklearn dependency<br>
You will find in the repo a jupyter notebook of one perceptron made from scratch & one with sklearn dependency

Also an Iris flowers classifier that you can train using a real data from Kaggle !

# dependencies used on the perceptron from scratch
Numpy<br>
Matplotlibv<br>
Jupyter Notebook<br>
Pandas<br>

# dependencies used on the perceptron using scikit-learn
Numpy<br>
Matplotlibv<br>
Jupyter Notebook<br>
pip install -U scikit-learn<br>

# Install dependencies
<pre>pip install numpy</pre>
<pre>pip install matplotlib</pre>
<pre>pip install jupyter</pre>
<pre>pip install -U scikit-learn</pre>
<pre>pip install pandas</pre>

# Resources from where I learned
## dependencies used on the perceptron from scratch

Numpy

Matplotlibv

Jupyter Notebook

Pandas

## dependencies used on the perceptron using scikit-learn
Numpy

Matplotlibv

Jupyter Notebook

scikit-learn


## Install dependencies

pip install numpy

pip install matplotlib

pip install jupyter

pip install -U scikit-learn

pip install pandas

## Resources from where I learned

Youtube channel from where I learned this : https://www.youtube.com/user/LogicGodTV

My medium article: https://medium.com/@ismailghallou/build-your-perceptron-neural-net-from-scratch-e12b7be9d1ef
Expand Down

0 comments on commit 6854e36

Please sign in to comment.