m7n commited on
Commit
c2ac439
·
1 Parent(s): 62c25af

made cit graph not default

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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=True,
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