apsys commited on
Commit
23036fb
·
1 Parent(s): 36343a3

style theme

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -862,17 +862,18 @@ with demo:
862
  )
863
 
864
  with gr.Row():
865
- with gr.Accordion("Citation", open=False):
866
- citation_button = gr.Textbox(
867
  value=CITATION_BUTTON_TEXT,
868
  lines=10,
869
  elem_id="citation-button",
870
  show_copy_button=True,
871
  )
872
 
873
- with gr.Accordion("Dataset Information", open=False):
874
- dataset_info = gr.Markdown(f"""
875
- Results are stored in the HuggingFace dataset: [{RESULTS_DATASET_ID}](https://huggingface.co/datasets/{RESULTS_DATASET_ID})
 
876
 
877
  Last updated: {pd.Timestamp.now().strftime("%Y-%m-%d %H:%M:%S UTC")}
878
  """)
 
862
  )
863
 
864
  with gr.Row():
865
+ with gr.Column():
866
+ gr.Textbox(
867
  value=CITATION_BUTTON_TEXT,
868
  lines=10,
869
  elem_id="citation-button",
870
  show_copy_button=True,
871
  )
872
 
873
+ # with gr.Accordion("Dataset Information", open=False):
874
+ with gr.Column():
875
+ gr.Markdown(f"""
876
+ Results: [{RESULTS_DATASET_ID}](https://huggingface.co/datasets/{RESULTS_DATASET_ID})
877
 
878
  Last updated: {pd.Timestamp.now().strftime("%Y-%m-%d %H:%M:%S UTC")}
879
  """)