Course by Emmanuel Flachaire, Professor of Economics at Aix-Marseille Université.
Hands-on sessions by Ewen Gallic, Assistant Professor at Aix-Marseille Université.
Training organised by :
Intermediate knowledge of econometrics and basic knowledge of programming with R.
These lectures have been conceived by econometricians for econometricians. The sessions proceed step by step, recalling the fundamental statistical concepts at the heart of the modern learning techniques. Their relative merits are illustrated by means of practical exercises and applications in R.
The course will present supervised Machine Learning techniques to econometricians. In particular, the lecturers will:
Session | Subject | Schedule | Supplementary Materials |
---|---|---|---|
Session 1 | Introduction, Optimization, Overfitting, Cross-Validation | 29 November 9.30-11.30 | |
Session 2 | Ridge and Lasso Regression | 30 November 9.30-11.30 | R: Ridge/Lasso |
Session 3 | CART, Bagging, Random Forests | 6 December 9.30-11.30 | R: Trees |
Session 4 | Boosting, Support Vector Machine | 13 December 9.30-11.30 | R: SVM |
Session 5 | Neural Networks, Deep Learning | 20 December 9.30-11.30 | R: Deep Learning |
Session 6 | Misspecification detection, Causal Inference | 21 December 9.30-11.30 | R: Misspecif. R: Causal Inf. |
The hands-on session will use the programming language R. To run the codes you will need to download and install R and RStudio. More details on how to install R are available here.
Session | Subject | Schedule | |
---|---|---|---|
Session 1 | Gradient descent and overfitting | 1 December 9.30-11.30 | |
Session 2 | Random forest and SVM | 17 December 15.30-17.30 | |
Session 3 | Deep learning | 21 December 14.30-16.30 |
The materials for the hands-on sessions are provided through an html book. A PDF version is also available. The R codes of each chapter can be downloaded (see below in the detailed programme).
Session 1:
Optimisation:
Required packages: tidyverse, numDeriv, plot3D
If these are not installed, please run the following instructions in R:
install.packages("tidyverse", "numDeriv", "plot3D")
Overfitting:
Required packages: tidyverse, readxl, kableExtra, randomForest, ISLR, glmnet
If these are not installed, please run the following instructions in R:
install.packages(
c("tidyverse", "readxl", "kableExtra", "randomForest", "ISLR", "glmnet")
)
Session 2: Random forest and SVM: 17 December 15.30-17.30
Trees and Ensemble Methods:
Required packages: tidyverse, lubridate, arsenal, cowplot, corrplot, rpart, rpart.plot, ggtext, foreach, ipred, lattice, caret, randomForest
If these are not installed, please run the following instructions in R:
install.packages(c("tidyverse", "lubridate", "arsenal", "cowplot",
"corrplot", "rpart", "rpart.plot", "ggtext", "foreach",
"ipred", "lattice", "caret", "randomForest"))
Support Vector Machines:
Required packages: tidyverse, e1071
If these are not installed, please run the following instructions in R:
install.packages(c("tidyverse", "e1071"))
Session 3: Deep learning: 21 December 14.30-16.30
Single notebook:
Required packages: tidyverse, fastDummies, reshape2, keras
install.packages("tidyverse")
install.packages("fastDummies")
install.packages("reshape2")
To install Keras: please run the following instructions in R:
install.packages("tensorflow")
install.packages("keras")
library(keras)
::install_tensorflow()
tensorflow::tf_config()
tensorflowinstall_keras()
On one of my machines, I had to install Miniconda:
unlink(reticulate::miniconda_path(), recursive = TRUE)
::install_miniconda(path = reticulate::miniconda_path(),
reticulateupdate = TRUE, force = FALSE)
::install_keras() keras