You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optionally, you can pass your feature transformation pipeline to the explainer to receive explanations in terms of the raw features before the transformation (rather than engineered features). If you skip this, the explainer provides explanations in terms of engineered features.
223
223
224
-
The format of supported transformations is same as the one described in [sklearn-pandas](https://github.com/scikit-learn-contrib/sklearn-pandas). We currently support these one-to-many or one-to-one transformers:
225
-
+ oneBinarizer
226
-
+ KBinsDiscretizer
227
-
+ KernelCenterer
228
-
+ LabelEncoder
229
-
+ MaxAbsScaler
230
-
+ MinMaxScaler
231
-
+ Normalizer
232
-
+ OneHotEncoder
233
-
+ OrdinalEncoder
234
-
+ PowerTransformer
235
-
+ QuantileTransformer
236
-
+ RobustScaler
237
-
+ StandardScaler
238
-
239
-
In general, any transformations are supported aslongas they operate on a single column and are therefore clearly one to many.
224
+
The format of supported transformations is same as the one described in [sklearn-pandas](https://github.com/scikit-learn-contrib/sklearn-pandas). In general, any transformations are supported aslongas they operate on a single column and are therefore clearly one to many.
# can covert back to Python objects from json string if desired
268
+
print("prediction:", resp.text)
269
+
```
270
+
* Clean up by deleting any obsolete deployed web service using `service.delete()`.
271
+
268
272
## Next Steps
269
273
270
274
To see a demonstration of interpretability with the Azure Machine Learning SDK, look at the [Interpretability sample notebooks](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/explain-model) on GitHub.
0 commit comments