Skip to main content
Reproduce an experiment that a team member creates to verify and validate their results. Before you reproduce an experiment, you need to make note of the:
  • Name of the project the run was logged to
  • Name of the run you want to reproduce
To reproduce an experiment:
  1. Navigate to the project where the run is logged to.
  2. Select the Workspace tab in the left sidebar.
  3. From the list of runs, select the run that you want to reproduce.
  4. Click Overview.
To continue, download the experiment’s code at a given hash or clone the experiment’s entire repository.
  • Download Python script or notebook
  • GitHub
Download the experiment’s Python script or notebook:
  1. In the Command field, make a note of the name of the script that created the experiment.
  2. Select the Code tab in the left navigation bar.
  3. Click Download next to the file that corresponds to the script or notebook.
  1. Select Files in the left navigation bar.
  2. Download the requirements.txt file and store it in your working directory. This directory should contain either the cloned GitHub repository or the downloaded Python script or notebook.
  3. (Recommended) Create a Python virtual environment.
  4. Install the requirements specified in the requirements.txt file.
    pip install -r requirements.txt
    
  5. Now that you have the code and dependencies, you can run the script or notebook to reproduce the experiment. If you cloned a repository, you might need to navigate to the directory where the script or notebook is located. Otherwise, you can run the script or notebook from your working directory.
  • Python notebook
  • Python script
If you downloaded a Python notebook, navigate to the directory where you downloaded the notebook and run the following command in your terminal:
jupyter notebook
I