We use analytics and cookies to understand site traffic. Information about your use of our site is shared with Google for that purpose.You can read our privacy policies and terms of use etc by clicking here.
Model Explanations with Anchor Text
Launch an movie sentiment prediction model and get explanations on text data.
In this demo we will:
- Launch a movie sentiment model which takes text input
- Send a request to get a sentiment predicton
- Create an explainer for the model
- Send the same request and then get an explanation for it
Create Model
Use the model url:
gs://seldon-models/sklearn/moviesentiment
Get Predictions
Run a single prediction using the JSON below.
{
"data": {
"names": [
"Text review"
],
"ndarray": [
"this film has bad actors"
]
}
}
Add an Anchor Text Explainer
Create an Anchor Text explainer using the default settings.
Get Explanation for one Request
Resend a single request using the JSON below and then explain it:
{
"data": {
"names": [
"Text review"
],
"ndarray": [
"this film has bad actors"
]
}
}
Last modified November 4, 2020: Adding demo for monitoring accuracy metrics (ee9f228)