Technical requirements
We will run the experiments and code in this chapter using Python, R, and Java. We'll describe the required packages for each programming language separately, starting with Python.
Python
For Python, we will use Python 3.8. You can download it from the official website at https://www.python.org/downloads/ and choose the 3.8 version.
The examples described in this chapter use the following Python packages:
comet-ml 3.23.0
matplotlib 3.4.3
numpy 1.19.5
pandas 1.3.4
scikit-learn 1.0
We have already described the first five packages and how to install them in Chapter 1, An Overview of Comet, so please refer back to that for further details on installation.
R
R is a very popular language for statistical computing. You can use it as a valid alternative to Python since it also provides many libraries for machine learning (ML) and data science in general. You can download it from the R official website, available...