Merge pull request #1236 from Azure/release_update/Release-77

update samples from Release-77 as a part of  SDK release
This commit is contained in:
Harneet Virk
2020-11-10 10:52:23 -08:00
committed by GitHub

View File

@@ -66,8 +66,7 @@ engineered_explanations = explainer.explain(['local', 'global'], tag='engineered
# Compute the raw explanations # Compute the raw explanations
raw_explanations = explainer.explain(['local', 'global'], get_raw=True, tag='raw explanations', raw_explanations = explainer.explain(['local', 'global'], get_raw=True, tag='raw explanations',
raw_feature_names=automl_explainer_setup_obj.raw_feature_names, raw_feature_names=automl_explainer_setup_obj.raw_feature_names,
eval_dataset=automl_explainer_setup_obj.X_test_transform, eval_dataset=automl_explainer_setup_obj.X_test_transform)
raw_eval_dataset=automl_explainer_setup_obj.X_test_raw)
print("Engineered and raw explanations computed successfully") print("Engineered and raw explanations computed successfully")