Edward J. Schwartz commited on
Commit
9b17b18
·
1 Parent(s): f457808
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -50,7 +50,7 @@ def get_all_dis(bname, addrs=None):
50
  return func_dis
51
 
52
  def get_funs(f, progress=gr.Progress()):
53
- progress((0, None), "Identifying functions")
54
  funs = get_all_dis(f.name)
55
  return "\n".join(("%#x" % addr) for addr in funs.keys())
56
 
@@ -135,7 +135,7 @@ with gr.Blocks() as demo:
135
  # for interpretation.
136
  def interpretation_function(text, progress=gr.Progress(track_tqdm=True)):
137
 
138
- progress((0,None), "Interpreting function")
139
  explainer = shap.Explainer(model_interp)
140
  shap_values = explainer([text])
141
 
 
50
  return func_dis
51
 
52
  def get_funs(f, progress=gr.Progress()):
53
+ progress(0.0, "Identifying functions")
54
  funs = get_all_dis(f.name)
55
  return "\n".join(("%#x" % addr) for addr in funs.keys())
56
 
 
135
  # for interpretation.
136
  def interpretation_function(text, progress=gr.Progress(track_tqdm=True)):
137
 
138
+ progress(0.0, "Interpreting function")
139
  explainer = shap.Explainer(model_interp)
140
  shap_values = explainer([text])
141