Technical requirements
The examples described in this chapter use the following software/tools:
- Python
- Git client
Python
We will use Python 3.8. You can download it from the official website at https://www.python.org/downloads/ and choose version 3.8.
The examples described in this chapter use the following Python packages:
comet_ml 3.23.0
pandas 1.3.4
scikit-learn 1.0
requests 2.27.1
Flask 2.1.1
We described the first two packages and how to install them in Chapter 1, An Overview of Comet. Please refer back to that for further details on installation.
Git client
A Git client is a command-line tool that allows you to communicate with a Source Control System (SCS). In this chapter, you will use the Git client to interact with GitLab. You can install it as follows:
For macOS users, open a terminal and run the following commands:
- Install the XCode Command Line Tools as follows:
xcode-select --install
- Then...