piotrj commited on
Commit
0192d6a
verified
1 Parent(s): 444be3f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -13
app.py CHANGED
@@ -103,19 +103,8 @@ with main:
103
  with gr.Tab("馃摑 About"):
104
  gr.Markdown(ABOUT)
105
  gr.Markdown(DATASET_TABLE)
106
-
107
- # with gr.Column():
108
- # with gr.Accordion("馃摍 Citation", open=False):
109
- # citation_button = gr.Textbox(
110
- # value="TEST",
111
- # label="TEST_LABEL",
112
- # lines=20,
113
- # elem_id="citation-button",
114
- # show_copy_button=True,
115
- # )
116
-
117
- with gr.Column():
118
- with gr.Accordion("馃摍 Citation", open=False):
119
  citation_button = gr.Textbox(
120
  label=CITATION_LABEL,
121
  value=CITATION_CONTENT,
@@ -123,6 +112,23 @@ with main:
123
  elem_id="citation-button",
124
  show_copy_button=True,
125
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
  if __name__ == "__main__":
128
  main.launch()
 
103
  with gr.Tab("馃摑 About"):
104
  gr.Markdown(ABOUT)
105
  gr.Markdown(DATASET_TABLE)
106
+ with gr.Column():
107
+ with gr.Accordion("馃摍 Related Work", open=False):
 
 
 
 
 
 
 
 
 
 
 
108
  citation_button = gr.Textbox(
109
  label=CITATION_LABEL,
110
  value=CITATION_CONTENT,
 
112
  elem_id="citation-button",
113
  show_copy_button=True,
114
  )
115
+
116
+ gr.Markdown(r"""
117
+ If this work is useful to you, please consider citing:
118
+ ```bibtex
119
+ @misc{jassem2025llmzszlcomprehensivellmbenchmark,
120
+ title={LLMzSz{\L}: a comprehensive LLM benchmark for Polish},
121
+ author={Krzysztof Jassem and Micha艂 Ciesi贸艂ka and Filip Grali艅ski and Piotr Jab艂o艅ski and Jakub Pokrywka and Marek Kubis and Monika Jab艂o艅ska and Ryszard Staruch},
122
+ year={2025},
123
+ eprint={2501.02266},
124
+ archivePrefix={arXiv},
125
+ primaryClass={cs.CL},
126
+ url={https://arxiv.org/abs/2501.02266},
127
+ }
128
+ ```
129
+ """)
130
+
131
+
132
 
133
  if __name__ == "__main__":
134
  main.launch()