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 7f00235 commit e3ff867Copy full SHA for e3ff867
src/sagemaker/clarify.py
@@ -920,6 +920,10 @@ def _run(
920
the Trial Component will be unassociated.
921
* ``'TrialComponentDisplayName'`` is used for display in Amazon SageMaker Studio.
922
"""
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
+
927
with tempfile.TemporaryDirectory() as tmpdirname:
928
analysis_config_file = os.path.join(tmpdirname, "analysis_config.json")
929
with open(analysis_config_file, "w") as f:
0 commit comments