ncoop57 commited on
Commit
247598f
1 Parent(s): f8e974b

Undo my commit because I'm an idiot

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -166,13 +166,13 @@ with gr.Blocks() as demo:
166
  plot_fn = partial(
167
  plt_plot,
168
  "check_compression_ratio_criteria",
169
- greater_than=True
170
  )
171
  calculate.click(plot_fn, [dataset, threshold], plot)
172
  check_fn = partial(
173
  check_filtered,
174
  "check_compression_ratio_criteria",
175
- greater_than=True
176
  )
177
  check.click(check_fn, [dataset, threshold], filtered_data)
178
 
166
  plot_fn = partial(
167
  plt_plot,
168
  "check_compression_ratio_criteria",
169
+ greater_than=False
170
  )
171
  calculate.click(plot_fn, [dataset, threshold], plot)
172
  check_fn = partial(
173
  check_filtered,
174
  "check_compression_ratio_criteria",
175
+ greater_than=False
176
  )
177
  check.click(check_fn, [dataset, threshold], filtered_data)
178