Skip to content

Commit 9b04774

Browse files
committed
Update README.md
1 parent e567ea9 commit 9b04774

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
A collection of minimal and clean implementations of machine learning algorithms.
33

44
### Why?
5-
This project is targeting people who wants to learn internals of ml algorithms or implement them from scratch.
6-
The code is much easier to follow than the optimized libraries and easier to play with.
7-
All algorithms are implemented in Python, using numpy, scipy and autograd.
5+
This project is targeting people who wants to learn internals of ml algorithms or implement them from scratch.
6+
The code is much easier to follow than the optimized libraries and easier to play with.
7+
All algorithms are implemented in Python, using numpy, scipy and autograd.
88

99
### Implemented:
1010
* [Deep learning (MLP, CNN, RNN, LSTM)] (mla/neuralnet)
@@ -32,8 +32,9 @@ All algorithms are implemented in Python, using numpy, scipy and autograd.
3232
pip install scipy numpy
3333
pip install .
3434

35-
### How to run examples without relative imports
36-
python examples/linear_models.py
35+
### How to run examples without installation
36+
cd MLAlgorithms
37+
python -m examples/linear_models
3738

3839
### Contributing
3940
Your contributions are always welcome!

0 commit comments

Comments
 (0)