Spaces:
Sleeping
Sleeping
Edward J. Schwartz
commited on
Commit
·
a86d2b5
1
Parent(s):
83c6313
Track shap tqdm
Browse files
app.py
CHANGED
@@ -133,10 +133,9 @@ with gr.Blocks() as demo:
|
|
133 |
# transformers pipeline, and I don't feel like figuring out how to
|
134 |
# reimplement that, so we'll just use a regular transformers pipeline here
|
135 |
# for interpretation.
|
136 |
-
def interpretation_function(text, progress=gr.Progress()):
|
137 |
|
138 |
explainer = shap.Explainer(model_interp)
|
139 |
-
progress((0, None), "Generating explanations; this takes a long time")
|
140 |
shap_values = explainer([text])
|
141 |
|
142 |
# Dimensions are (batch size, text size, number of classes)
|
|
|
133 |
# transformers pipeline, and I don't feel like figuring out how to
|
134 |
# reimplement that, so we'll just use a regular transformers pipeline here
|
135 |
# for interpretation.
|
136 |
+
def interpretation_function(text, progress=gr.Progress(track_tqdm=True)):
|
137 |
|
138 |
explainer = shap.Explainer(model_interp)
|
|
|
139 |
shap_values = explainer([text])
|
140 |
|
141 |
# Dimensions are (batch size, text size, number of classes)
|