-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path52_machine_learning.Rmd
87 lines (35 loc) · 3.87 KB
/
52_machine_learning.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Machine learning {#ml}
Machine learning is a growing field of data analysis where the building of models is iterated automatically. This is particularly important in areas where new data is being collected on an on-going basis (examples often used are Netflix recommendations and amazon`s "Recommended for you").
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Machine learning is basically just a fancier version of y=mx+b <a href="https://t.co/lhrUJcjvmN">https://t.co/lhrUJcjvmN</a></p>— Medium (/@/Medium) <a href="https://twitter.com/Medium/status/1097681613666902017?ref_src=twsrc%5Etfw">February 19, 2019</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
## Theory and methods
* [Computational learning theory](https://en.wikipedia.org/wiki/Computational_learning_theory)
* [Statistical learning theory](https://en.wikipedia.org/wiki/Statistical_learning_theory)
David Robinson, 2018-01-09, ["What's the difference between data science, machine learning, and artificial intelligence?"](http://varianceexplained.org/r/ds-ml-ai/)
Lev Reyzin, 2019-01-07, ["Unprovability comes to machine learning"](https://www.nature.com/articles/d41586-019-00012-4), _Nature_
Nicholas Harvey, [CPSC 531H: Machine Learning Theory](https://www.cs.ubc.ca/~nickhar/F18-531/), UBC Computer Science Department.
* "This is a graduate course on some theoretical aspects of machine learning. The emphasis is on foundations and on results with rigorous proofs. The viewpoint is much more computational than statistical."
Audrey Lorberfeld, 2019-03-01, [Machine Learning Algorithms In Layman’s Terms, Part 1](https://towardsdatascience.com/machine-learning-algorithms-in-laymans-terms-part-1-d0368d769a7b)
### Deep learning
Sigrid Keydana, 2019-03-14, [Math, code, concepts: A third road to deep learning](https://blogs.rstudio.com/tensorflow/posts/2019-03-15-concepts-way-to-dl/) {at the [TensorFlow for R](https://blogs.rstudio.com/tensorflow/) blog}
***
## R
Laurent Gatto, 2019-04-24, [An Introduction to Machine Learning with R](https://lgatto.github.io/IntroMachineLearningWithR/index.html)
J.J. Allaire, [Machine Learning with R and TensorFlow](https://www.youtube.com/watch?v=atiYXm7JZv0&feature=youtu.be), keynote at rstudio::conf 2018 (youtube video)
David Smith, 2018-02-21, [Machine Learning in R with TensorFlow](http://blog.revolutionanalytics.com/2018/02/r-with-tensorflow.html)
Coursera: [Practical Machine Learning](https://www.coursera.org/learn/practical-machine-learning)
Karlijn Willems, [Machine Learning in R for beginners] {link to DataCamp course removed}
Jason Brownlee, 2016-02-23, [Your First Machine Learning Project in R Step-By-Step (tutorial and template for future projects)](https://machinelearningmastery.com/machine-learning-in-r-step-by-step/)
Brad Boehmke & Brandon Greenwell, [_Hands-on Machine Learning with R_](https://bradleyboehmke.github.io/HOML/)
* [supplementary website](https://koalaverse.github.io/homlr/)
Khushbu Shah, 2016-06-06, ["What are the Best Machine Learning Packages in R?"](https://www.r-bloggers.com/what-are-the-best-machine-learning-packages-in-r/)
### `{caret}`
Jason Brownlee (2016-02-03) [Your First Machine Learning Project in R Step-By-Step](https://machinelearningmastery.com/machine-learning-in-r-step-by-step/) -- at [Machine Learning Mastery](https://machinelearningmastery.com/start-here/)
### `{h2o}`
**package**
CRAN page: [h2o: R Interface for H2O](https://cran.r-project.org/package=h2o)
**articles**
Erin LeDell, 2017, [Automatic Machine Learning in R](https://github.com/h2oai/h2o-meetups/blob/master/2017_07_05_useR_Brussels_H2O_AutoML_in_R/useR2017_automl_july2017.pdf?utm_content=bufferaca4e&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer) -- presentation at UseR! Brussels
### `{mlr}`
[Machine Learning in R ](https://mlr.mlr-org.com/)
-30-