We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71989f9 commit e1fb7a2Copy full SHA for e1fb7a2
src/sagemaker/clarify.py
@@ -983,6 +983,10 @@ def _run(
983
the Trial Component will be unassociated.
984
* ``'TrialComponentDisplayName'`` is used for display in Amazon SageMaker Studio.
985
"""
986
+ # for debugging: to access locally, i.e. without a need to look for it in an S3 bucket
987
+ self._last_analysis_config = analysis_config
988
+ logger.info("Analysis Config: ", analysis_config)
989
+
990
with tempfile.TemporaryDirectory() as tmpdirname:
991
analysis_config_file = os.path.join(tmpdirname, "analysis_config.json")
992
with open(analysis_config_file, "w") as f:
0 commit comments