Spaces:
Running
on
Zero
Running
on
Zero
made cit graph not default
Browse files
app.py
CHANGED
@@ -186,7 +186,8 @@ def predict(text_input, sample_size_slider, reduce_sample_checkbox, sample_reduc
|
|
186 |
break
|
187 |
if should_break:
|
188 |
break
|
189 |
-
|
|
|
190 |
print(f"Query completed in {time.time() - start_time:.2f} seconds")
|
191 |
|
192 |
# Process records
|
@@ -551,7 +552,7 @@ with gr.Blocks(theme=theme, css="""
|
|
551 |
gr.Markdown("### Citation graph")
|
552 |
citation_graph_checkbox = gr.Checkbox(
|
553 |
label="Add Citation Graph",
|
554 |
-
value=
|
555 |
info="Adds a citation graph of the sample to the plot."
|
556 |
)
|
557 |
|
|
|
186 |
break
|
187 |
if should_break:
|
188 |
break
|
189 |
+
if should_break:
|
190 |
+
break
|
191 |
print(f"Query completed in {time.time() - start_time:.2f} seconds")
|
192 |
|
193 |
# Process records
|
|
|
552 |
gr.Markdown("### Citation graph")
|
553 |
citation_graph_checkbox = gr.Checkbox(
|
554 |
label="Add Citation Graph",
|
555 |
+
value=False,
|
556 |
info="Adds a citation graph of the sample to the plot."
|
557 |
)
|
558 |
|