Technical requirements
We will run all of the experiments and code in this chapter using Python 3.8. You can download it from the official website at https://www.python.org/downloads/, choosing the 3.8 version.
The examples described in this chapter use the following Python packages:
comet-ml 3.23.0
gradio 3.2.2
matplotlib 3.2.2
numpy 1.21.6
pandas 1.3.4
tensorflow 2.8.2
We have already described the comet-ml
, matplotlib
, numpy
, and pandas
packages and how to install them in Chapter 1, An Overview of Comet. So, please refer back to that for further details on installation.
In this section, you will see how to install the other required packages.
gradio
gradio
is a Python package that permits you to build fast demo apps that are fully integrated with your notebooks. You can install gradio
as follows:
pip install gradio
For more details on gradio
, you can read its official documentation, available at the following link: https:/...