Skip to content

update fork #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
Aug 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5fbc424
upload the lecture slide
wenzheli Jun 25, 2019
9011da2
modified
wenzheli Jun 25, 2019
3390d0b
upload slides and code
wenzheli Jun 26, 2019
9d0c725
update the readme
wenzheli Jun 26, 2019
b1849e2
update README
wenzheli Jun 26, 2019
562b67b
Create README.md
wenzheli Jun 26, 2019
3ef0660
Update README.md
wenzheli Jun 26, 2019
9cae10b
add ppt, code, data, homework
Jun 30, 2019
6800301
fix code bug
Jun 30, 2019
853c8b2
push the preview slide
wenzheli Jul 2, 2019
69fe82f
update the slide
wenzheli Jul 2, 2019
85c2755
upload the code
wenzheli Jul 3, 2019
459951c
upload the slide
wenzheli Jul 3, 2019
17834f5
upload the annotated d slide
wenzheli Jul 3, 2019
24d80e6
fix typo
Jul 3, 2019
f608cfa
Merge branch 'master' of https://github.com/GreedyAIAcademy/Machine-L…
Jul 3, 2019
0a671a3
Update README.md
yuan776 Jul 4, 2019
dfe1f4e
add ppt and code for svm
Jul 4, 2019
660c4cf
Merge branch 'master' of https://github.com/GreedyAIAcademy/Machine-L…
Jul 4, 2019
b2792b9
add homework
Jul 4, 2019
b53dd03
update ppt for svm
Jul 7, 2019
a8b77ad
fix typo
Jul 7, 2019
e36bac3
update ppt
Jul 7, 2019
2fe25f2
add ppt; code; and homework for DecisionTree and RandomForest
Jul 12, 2019
452a658
slide
wenzheli Jul 17, 2019
eb5daae
upload the slides and code
wenzheli Jul 18, 2019
d830a97
uppload one missing file
wenzheli Jul 19, 2019
979fbde
update jupyter notebook
Jul 23, 2019
982e4e2
add 8. recommender
Jul 23, 2019
4cfb52e
update ppt and code for recommender
Jul 27, 2019
754f776
add slide
wenzheli Jul 30, 2019
6b4c714
Merge branch 'master' of github.com:GreedyAIAcademy/Machine-Learning
wenzheli Jul 30, 2019
d174a90
rename the foflder
wenzheli Jul 30, 2019
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
462 changes: 462 additions & 0 deletions 2.KNN/KNN.ipynb

Large diffs are not rendered by default.

Binary file added 2.KNN/KNN.pdf
Binary file not shown.
Binary file added 2.KNN/KNN_annotated.pdf
Binary file not shown.
12 changes: 12 additions & 0 deletions 2.KNN/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
KNN部分的内容主要包括:
- KNN算法的核心思想
- 特征工程
- 欧式距离的计算
- K的选择,决策边界
- 交叉验证

延伸阅读推荐:

- KD-tree: https://www.cs.cmu.edu/~ckingsf/bioinfo-lectures/kdtrees.pdf
- Large Margin Nearest Neighbor: http://jmlr.org/papers/volume10/weinberger09a/weinberger09a.pdf
- Latent Semantic Hashing: [Book]Mining of Massive Dataset. Chapter 3. Leskovec-Rajaraman-Ullman
14 changes: 14 additions & 0 deletions 2.KNN/data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Brand,Type,Color,Construction Year,Odometer,Ask Price,Days Until MOT,HP
Peugeot 106,1.0,blue,2002,166879,999,138,60
Peugeot 106,1.0,blue,1998,234484,999,346,60
Peugeot 106,1.1,black,1997,219752,500,-5,60
Peugeot 106,1.1,red,2001,223692,750,-87,60
Peugeot 106,1.1,grey,2002,120275,1650,356,59
Peugeot 106,1.1,red,2003,131358,1399,266,60
Peugeot 106,1.1,green,1999,304277,799,173,57
Peugeot 106,1.4,green,1998,93685,1300,0,75
Peugeot 106,1.1,white,2002,225935,950,113,60
Peugeot 106,1.4,green,1997,252319,650,133,75
Peugeot 106,1.0,black,1998,220000,700,82,50
Peugeot 106,1.1,black,1997,212000,700,75,60
Peugeot 106,1.1,black,2003,255134,799,197,60
Loading