Technical requirements
In this chapter, you will need to be able to run code to load datasets, prepare data, and train, optimize, and evaluate ML models. To do so, you will need the following libraries:
- numpy
- pandas
- scikit-learn
They can be installed using pip
with the following command line:
pip install numpy pandas scikit-learn
Note
In this book, some best practices such as using virtual environments won’t be explicitly mentioned. However, it is highly recommended that you use a virtual environment before installing any library using pip
or any other package manager.