Skip to content

Commit e3ff867

Browse files
committed
feature: added _last_analysis_config in SageMakerClarifyProcessor
1 parent 7f00235 commit e3ff867

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/sagemaker/clarify.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,10 @@ def _run(
920920
the Trial Component will be unassociated.
921921
* ``'TrialComponentDisplayName'`` is used for display in Amazon SageMaker Studio.
922922
"""
923+
# for debugging: to access locally, i.e. without a need to look for it in an S3 bucket
924+
self._last_analysis_config = analysis_config
925+
logger.info("Analysis Config: ", analysis_config)
926+
923927
with tempfile.TemporaryDirectory() as tmpdirname:
924928
analysis_config_file = os.path.join(tmpdirname, "analysis_config.json")
925929
with open(analysis_config_file, "w") as f:

0 commit comments

Comments
 (0)