File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,10 @@ class Tracker(object):
48
48
end times are automatically set when using the with statement and the trial component is saved to
49
49
SageMaker at the end of the block.
50
50
51
- Note that only parameters, input artifacts, and output artifacts are saved to SageMaker. Metrics are saved to file.
51
+ Note that parameters and input/output artifacts are saved to SageMaker directly via the
52
+ UpdateTrialComponent operation. In contrast metrics (via `log_metric` method) are saved to a file, which is
53
+ then ingested into SageMaker via a metrics agent _which only runs on training job hosts_. As a result any metrics
54
+ logged in non-training job host environments will not be ingested into SageMaker.
52
55
53
56
Attributes:
54
57
trial_component (TrialComponent): The trial component tracked.
You can’t perform that action at this time.
0 commit comments