All Projects → rstudio-conf-2020 → Applied Ml

rstudio-conf-2020 / Applied Ml

Licence: cc-by-sa-4.0
Code and Resources for "Applied Machine Learning"

Projects that are alternatives of or similar to Applied Ml

Thundersvm
ThunderSVM: A Fast SVM Library on GPUs and CPUs
Stars: ✭ 1,282 (+721.79%)
Mutual labels:  classification, regression
Gpstuff
GPstuff - Gaussian process models for Bayesian analysis
Stars: ✭ 106 (-32.05%)
Mutual labels:  classification, regression
Lossfunctions.jl
Julia package of loss functions for machine learning.
Stars: ✭ 89 (-42.95%)
Mutual labels:  classification, regression
100daysofmlcode
My journey to learn and grow in the domain of Machine Learning and Artificial Intelligence by performing the #100DaysofMLCode Challenge.
Stars: ✭ 146 (-6.41%)
Mutual labels:  classification, regression
Machine Learning Projects
This repository consists of all my Machine Learning Projects.
Stars: ✭ 135 (-13.46%)
Mutual labels:  classification, regression
Dlcv for beginners
《深度学习与计算机视觉》配套代码
Stars: ✭ 1,244 (+697.44%)
Mutual labels:  classification, regression
Neuroflow
Artificial Neural Networks for Scala
Stars: ✭ 105 (-32.69%)
Mutual labels:  classification, regression
Mlbox
MLBox is a powerful Automated Machine Learning python library.
Stars: ✭ 1,199 (+668.59%)
Mutual labels:  classification, regression
Tiny ml
numpy 实现的 周志华《机器学习》书中的算法及其他一些传统机器学习算法
Stars: ✭ 129 (-17.31%)
Mutual labels:  classification, regression
Ml Dl Scripts
The repository provides usefull python scripts for ML and data analysis
Stars: ✭ 119 (-23.72%)
Mutual labels:  classification, text-analysis
Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (+1308.33%)
Mutual labels:  classification, regression
Benchmarks
Comparison tools
Stars: ✭ 139 (-10.9%)
Mutual labels:  classification, regression
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-48.08%)
Mutual labels:  classification, regression
Ml
A high-level machine learning and deep learning library for the PHP language.
Stars: ✭ 1,270 (+714.1%)
Mutual labels:  classification, regression
Pytsetlinmachine
Implements the Tsetlin Machine, Convolutional Tsetlin Machine, Regression Tsetlin Machine, Weighted Tsetlin Machine, and Embedding Tsetlin Machine, with support for continuous features, multigranularity, and clause indexing
Stars: ✭ 80 (-48.72%)
Mutual labels:  classification, regression
Machine Learning Algorithms
A curated list of almost all machine learning algorithms and deep learning algorithms grouped by category.
Stars: ✭ 92 (-41.03%)
Mutual labels:  classification, regression
Sru Deeplearning Workshop
دوره 12 ساعته یادگیری عمیق با چارچوب Keras
Stars: ✭ 66 (-57.69%)
Mutual labels:  classification, regression
Metriculous
Measure and visualize machine learning model performance without the usual boilerplate.
Stars: ✭ 71 (-54.49%)
Mutual labels:  classification, regression
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+888.46%)
Mutual labels:  classification, regression
Interactive machine learning
IPython widgets, interactive plots, interactive machine learning
Stars: ✭ 140 (-10.26%)
Mutual labels:  classification, regression

Applied Machine Learning

rstudio::conf 2020


🗓 January 27 and 28, 2020
⏰ 09:00 - 17:00
🏨 Continental Ballroom Rooms 4 (Ballroom Level)
✍️ rstd.io/conf
📒 Part 1 2 3 4 5 6

Gitter


Overview

Machine learning is the study and application of algorithms that learn from and make predictions on data. From search results to self-driving cars, it has manifested itself in all areas of our lives and is one of the most exciting and fast-growing fields of research in the world of data science.

This two-day course will provide an overview of using R for supervised learning. The session will step through the process of building, visualizing, testing, and comparing models that are focused on prediction.

The goal of the course is to provide a thorough workflow in R that can be used with many different regression or classification techniques. Case studies on real data will be used to illustrate the functionality and several different predictive models are illustrated. The course focuses on both low- and high-level approaches to modeling using the tidyverse and uses several types of models for illustration.

Learning objectives

Attendees will be able to use the tidymodels packages to create, tune, fit, visualize, and assess models created for the purpose of prediction.

Is this course for me?

This course requires basic familiarity with R and the tidyverse.

Prework

If you want to read up a bit about predictive modeling before the workshop, check out chapter 1 and chapter 3 of Feature Engineering and Selection.

We will have RStudio server pro instances with all of the packages installed as well as the above GitHub repository available.

If you would like to run R locally, the installation instructions are:

install.packages(
  c(
    'AmesHousing',
    'C50',
    'devtools',
    'discrim',
    'earth',
    'ggthemes',
    'glmnet',   # See important note below
    'klaR',
    'lubridate',
    'modeldata',
    'party',
    'pROC',
    'rpart',
    'stringr',
    'textfeatures',
    'tidymodels'
  ),
  repos = "http://cran.rstudio.com"
)
devtools::install_github(c(
  "tidymodels/tidymodels",
  "tidymodels/tune",
  "tidymodels/textrecipes",
  "koalaverse/vip",
  "gadenbuie/countdown"
))

Important note! A new version of glmnet was released on 2019-11-09. Although it states that it depends on R (≥ 3.5.0), it may not install on R versions < 3.6.0.

We will be on-site at least 30min before the workshop commences in case you need any help getting packages installed. Prior to this, you can email [email protected] with questions.

Note

We don’t provide the Rmd files for the slides mostly because they are complex and we don’t support them. However, we do get requests for people who would like to use them as a template so we provide Part_1.Rmd if you want to use this format for your presentations.

Schedule

Time Activity
09:00 - 10:30 Session 1
10:30 - 11:00 Coffee break
11:00 - 12:30 Session 2
12:30 - 13:30 Lunch break
13:30 - 15:00 Session 3
15:00 - 15:30 Coffee break
15:30 - 17:00 Session 4

Instructors

Max Kuhn and Davis Vaughan


This work is licensed under a Creative Commons Attribution 4.0 International License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].