update samples from Release-146 as a part of 1.0.62 SDK release

This commit is contained in:
vizhur
2019-09-16 23:21:57 +00:00
parent e1724c8a89
commit 6bb1e2a3e3
96 changed files with 11640 additions and 2027 deletions

View File

@@ -46,7 +46,8 @@ with open(model_file_name, 'wb') as file:
# register the model
run.upload_file('original_model.pkl', os.path.join('./outputs/', model_file_name))
original_model = run.register_model(model_name='original_model', model_path='original_model.pkl')
original_model = run.register_model(model_name='model_explain_model_on_amlcomp',
model_path='original_model.pkl')
# Explain predictions on your local machine
tabular_explainer = TabularExplainer(model, X_train, features=boston_data.feature_names)