You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implémentation d’un algorithme de machine learning : régression linéaire avec descente de gradient. Le projet prédit le prix d’une voiture selon son kilométrage, avec entraînement (θ0, θ1) sauvegardé en JSON, prédiction en CLI, visualisation, tests, CI/CD et outils qualité.
Ce projet vous servira a faire vos premiers pas dans l'IA et plus precisement le machine learning. Vous allez commencer par algo simple. Vous coderez un program qui peut predire le prix d une voiture en utilisant la regression lineaire avec un algorithme du gradient
This project implements linear regression using a dataset to predict a dependent variable based on an independent variable. It involves data preprocessing, making predictions, and visualizing results using matplotlib. The final output is a scatter plot with a fitted regression line, showcasing the model’s accuracy.