Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
MachineLearning
====================

一些常见的机器学习算法的实现代码,本人学习过程中做的总结,资历尚浅,如有错误请不吝指出。

## Installation

一些常见的机器学习算法的实现代码,本人学习过程中做的总结,资历尚浅,如有错误请不吝指出。
Install all required dependencies before running any code:

```bash
pip install -r requirements.txt
```

> **Note:** If you encounter `ModuleNotFoundError: No module named 'sklearn'`, run the above command. `sklearn` is part of the `scikit-learn` package.


## 目录介绍
Expand Down
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
numpy
scipy
matplotlib
scikit-learn
Pillow
cvxopt