February 12, 2026Ressources Machine Learning
Sélection de ressources pour apprendre et pratiquer le Machine Learning.
Cours en ligne§
Livres§
| Livre | Auteur | Focus |
|---|
| Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow | Aurélien Géron | Pratique, code Python |
| Pattern Recognition and Machine Learning | Christopher Bishop | Théorie mathématique |
| The Elements of Statistical Learning | Hastie, Tibshirani, Friedman | Statistique avancée |
| Deep Learning | Ian Goodfellow et al. | Fondements du deep learning |
| Understanding Deep Learning | Simon Prince | Deep learning moderne (gratuit en PDF) |
| Dive into Deep Learning | Aston Zhang et al. | Interactif, code (gratuit) |
Datasets§
Outils et frameworks§
Librairies Python essentielles§
| Librairie | Utilisation |
|---|
| scikit-learn | ML classique (classification, régression, clustering) |
| PyTorch | Deep Learning (recherche et production) |
| TensorFlow / Keras | Deep Learning (production, déploiement) |
| XGBoost / LightGBM | Gradient boosting (compétitions, tabular data) |
| Hugging Face Transformers | NLP, LLM, vision (modèles pré-entraînés) |
| Pandas / NumPy | Manipulation de données |
| Matplotlib / Seaborn | Visualisation |
Outils d’expérimentation§
| Outil | Description |
|---|
| Weights & Biases | Tracking d’expériences, visualisation |
| MLflow | Gestion du cycle de vie ML |
| DVC | Versionnement de données et modèles |
| Optuna | Optimisation d’hyperparamètres |
Compétitions et pratique§
Communautés§
Roadmap suggérée§
graph TD
START["Bases Python<br/>+ Maths"] --> ML["Machine Learning<br/>classique (sklearn)"]
ML --> DL["Deep Learning<br/>(PyTorch/TF)"]
DL --> SPEC{"Spécialisation"}
SPEC --> NLP["NLP<br/>Transformers, LLM"]
SPEC --> CV["Computer Vision<br/>CNN, détection"]
SPEC --> RL2["Reinforcement<br/>Learning"]
SPEC --> TABULAR["Tabular Data<br/>XGBoost, feature eng."]
style START fill:#9E9E9E,color:#fff
style ML fill:#2196F3,color:#fff
style DL fill:#4CAF50,color:#fff
style SPEC fill:#FF9800,color:#fff—The Gardener