Edward J. Schwartz commited on
Commit
83c6313
·
1 Parent(s): 3466141

Minor change to progress bar

Browse files
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, "Identifying functions")
54
  funs = get_all_dis(f.name)
55
  return "\n".join(("%#x" % addr) for addr in funs.keys())
56
 
@@ -136,7 +136,7 @@ with gr.Blocks() as demo:
136
  def interpretation_function(text, progress=gr.Progress()):
137
 
138
  explainer = shap.Explainer(model_interp)
139
- progress(0, "Generating explanations; this takes a long time")
140
  shap_values = explainer([text])
141
 
142
  # Dimensions are (batch size, text size, number of classes)
 
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
 
 
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)