diff --git a/_bookdown.yml b/_bookdown.yml new file mode 100644 index 0000000..248ffc6 --- /dev/null +++ b/_bookdown.yml @@ -0,0 +1,33 @@ +book_filename: intro_to_ml +rmd_files: ["index.Rmd", + "01_intro.Rmd", + "02_moindres_carres.Rmd", + "02_b_breviaire_proba_stat.Rmd", + "02_a_application_abalone.Rmd", + "03_tikhonov.Rmd", + "04_validation_croisee.Rmd", + "05_presentation_svd.Rmd", + "05_b_svd_pca.Rmd", + "06_matrice_definie_non_negative.Rmd", + "07_multiplicateurs_de_lagrange.Rmd", + "08_derivation_svd.Rmd", + "09_puissance_iteree_valeur_propre.Rmd", + "10_puissance_iteree_svd.Rmd", + "11_projecteurs.Rmd", + "12_factorisation_qr.Rmd", + "13_puissance_iteree_par_blocs.Rmd", + "14_geometrie_ridge_svd.Rmd", + "15_loocv.Rmd", + "16_biais_variance_estimateur.Rmd", + "17_biais_variance_ridge.Rmd", + "18_kernel_ridge_regression.Rmd", + "19_nystroem_approximation.Rmd", + "20_tp_dilemme_biais_variance_sujet.Rmd", + "20_tp_dilemme_biais_variance.Rmd", + "21_tp_projection_aleatoire_sujet.Rmd", + "21_tp_projection_aleatoire.Rmd", + "21_b_tp_projection_aleatoire_housing_pca.Rmd", + "21_c_tp_projection_aleatoire_housing_elm.Rmd", + "22_tp_kernel_ridge_regression_sujet.Rmd", + "22_tp_kernel_ridge_regression.Rmd", + "99_references.Rmd"] \ No newline at end of file diff --git a/_output.yml b/_output.yml new file mode 100644 index 0000000..227f47e --- /dev/null +++ b/_output.yml @@ -0,0 +1,8 @@ +bookdown::pdf_book: + number_section: yes + includes: + in_header: preamble.tex + toc_depth: 3 + toc_appendix: yes + extra_dependencies: + algorithm2e: [ruled,vlined,linesnumbered] \ No newline at end of file diff --git a/index.Rmd b/index.Rmd new file mode 100644 index 0000000..9e5af90 --- /dev/null +++ b/index.Rmd @@ -0,0 +1,12 @@ +--- +title: "Introduction au Machine Learning" +author: "Pierre-Edouard Portier" +documentclass: book +geometry: margin=2cm +fontsize: 12pt +date: "Mars 2022" +toc: true +classoption: fleqn +bibliography: intro_to_ml.bib +link-citations: yes +--- \ No newline at end of file diff --git a/make_book b/make_book new file mode 100644 index 0000000..a214698 --- /dev/null +++ b/make_book @@ -0,0 +1,3 @@ +#!/bin/bash + +Rscript -e 'library(bookdown);bookdown::render_book()' \ No newline at end of file