Skip to content

Commit 7e22ead

Browse files
committed
fix
1 parent 6363be9 commit 7e22ead

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

_doc/articles/2026/2026-03-15-route2026-ml.rst

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,29 @@ Peut-on prédire le nombre de candidatures en 2026 pour chaque établissement ?
4747
Séance 2 (13/2)
4848
===============
4949

50-
* tests unitaires
50+
* tests unitaires, pourquoi en faire
5151
* pipelines : pourquoi en faire
52+
* arbre de décision, comment ça marche ?
53+
* pourquoi les random forest sont résistantes à l'overfitting
54+
* qu'est-ce que le gradient boosting tree ?
55+
* réseau de neurones, comment ça marche ?
56+
* réseau diabolo et la compression
57+
* notion d'embedding
58+
59+
quelques notebooks
60+
61+
* arbre de régression, de classification
62+
:ref:`RandomForest, Overfitting <nbl-practice-ml-ml_a_tree_overfitting>`
63+
* Gradient Boosting, :ref:`Gradient Boosting et Learning Rate avec les Random Forest <nbl-practice-ml-gradient_boosting>`
64+
* Régression linéaire et contraintes sur les coefficients,
65+
`Ridge <https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Ridge.html>`_,
66+
`Lasso <https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Lasso.html>`_,
67+
`ElasticNet <https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.ElasticNet.html>`_,
68+
:ref:`Ridge, Lasso, mathématiques <nbl-practice-ml-ridge_lasso>`
69+
* paramètres et hyper paramètres, :ref:`Sélection des hyper-paramètres <nbl-practice-ml-winesr_knn_hyper>`,
70+
:class:`sklearn.model_selection.GridSearchCV`
71+
* `Data challenge - Algorithme machine learning qui permet de prédire la gravité d’un accident de la rout
72+
<https://www.data.gouv.fr/fr/reuses/data-challenge-algorithme-machine-learning-qui-permet-de-predire-la-gravite-dun-accident-de-la-route/>`_
5273

5374
Séance 3 (27/2)
5475
===============

_doc/examples/ml/plot_template_data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,6 @@ def make_pipeline(table, cible):
119119
oracle = compute_oracle(table, cible)
120120
print(f"oracle : {oracle}")
121121

122-
train_X, test_X, train_y, test_y = split_train_test(table, cible)
123-
model = make_pipeline(table, cible)
124-
model.fit(train_X, train_y)
122+
# train_X, test_X, train_y, test_y = split_train_test(table, cible)
123+
# model = make_pipeline(table, cible)
124+
# model.fit(train_X, train_y)

0 commit comments

Comments
 (0)