We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bdcfb3 commit 710f33dCopy full SHA for 710f33d
vertexai/resources/preview/ml_monitoring/model_monitors.py
@@ -121,7 +121,7 @@ def _visualize_feature_attribution(feature_attribution_output: str) -> None:
121
import tensorflow as tf
122
123
with tf.io.gfile.GFile(feature_attribution_output, "r") as f:
124
- return json.loads(f.read())
+ print(json.dumps(json.loads(f.read()), indent=4))
125
126
127
def _feature_drift_stats_output_path(output_directory: str, job_id: str) -> (str, str):
0 commit comments