Spaces:
Runtime error
Runtime error
ncoop57
commited on
Commit
•
247598f
1
Parent(s):
f8e974b
Undo my commit because I'm an idiot
Browse files
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=
|
170 |
)
|
171 |
calculate.click(plot_fn, [dataset, threshold], plot)
|
172 |
check_fn = partial(
|
173 |
check_filtered,
|
174 |
"check_compression_ratio_criteria",
|
175 |
-
greater_than=
|
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 |
|