
Machine Learning with Amazon SageMaker Cookbook
By :

In the previous recipe, we ran multiple training jobs and used SageMaker Experiments to keep track of the parameters, input and output artifacts, metric values, and other metadata with the Experiment
, Trial
, TrialComponent
, and Tracker
resources using the smexperiments
library.
In this recipe, we will use ExperimentAnalytics
from sagemaker.analytics
to load and analyze the DataFrame containing the details of the previous experiments we have performed and tracked using SageMaker Experiments. This allows us to inspect and analyze the results of the training jobs with just a few lines of code.
The following is the prerequisite for this recipe:
The first set of steps in this recipe focuses on preparing and loading the prerequisites:
my-experiments/chapter05
directory...