An introduction to machine learning.
The main objective of this project is to develop a model that can predict car prices based on mileage.
To achieve this goal, I have employed the widely used linear regression technique, which involves fitting a straight line through the data points to identify the relationship between the two variables.
The model has been trained using a gradient descent algorithm, a popular optimization technique used in machine learning.
The subject can be found here.
- Install the required Python packages:
pip install -r requirements.txt
- Train the model:
python training.py
- Make predictions:
python prediction.py
Run the tests with:
python -m unittest discover tests