zhiminy commited on
Commit
4e2670a
·
1 Parent(s): 4110d16
Files changed (2) hide show
  1. README.md +16 -0
  2. app.py +10 -6
README.md CHANGED
@@ -79,3 +79,19 @@ Your interactions are anonymized and used solely for improving SWE-Model-Arena a
79
  ## Contact
80
 
81
  For inquiries or feedback, please [open an issue](https://github.com/SE-Arena/SWE-Model-Arena/issues/new) in this repository. We welcome your contributions and suggestions!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  ## Contact
80
 
81
  For inquiries or feedback, please [open an issue](https://github.com/SE-Arena/SWE-Model-Arena/issues/new) in this repository. We welcome your contributions and suggestions!
82
+
83
+ ## Citation
84
+
85
+ Made with ❤️ for SWE-Model-Arena. If this work is useful to you, please consider citing our vision paper:
86
+
87
+ ```bibtex
88
+ @misc{zhao2025se,
89
+ title={SWE-Arena: An Interactive Platform for Evaluating Foundation Models in Software Engineering},
90
+ author={Zhimin Zhao},
91
+ year={2025},
92
+ eprint={2502.01860},
93
+ archivePrefix={arXiv},
94
+ primaryClass={cs.SE},
95
+ url={https://arxiv.org/abs/2502.01860},
96
+ }
97
+ ```
app.py CHANGED
@@ -717,13 +717,17 @@ with gr.Blocks(js=clickable_links_js) as app:
717
  # Add a citation block in Markdown
718
  citation_component = gr.Markdown(
719
  """
720
- Made with ❤️ for SWE-Model-Arena. If this work is useful to you, please consider citing:
721
  ```
722
- @inproceedings{zhao2025se,
723
- title={SWE-Arena: An Interactive Platform for Evaluating Foundation Models in Software Engineering},
724
- author={Zhao, Zhimin},
725
- booktitle={ACM international conference on AI Foundation Models and Software Engineering},
726
- year={2025}}
 
 
 
 
727
  ```
728
  """
729
  )
 
717
  # Add a citation block in Markdown
718
  citation_component = gr.Markdown(
719
  """
720
+ Made with ❤️ for SWE-Model-Arena. If this work is useful to you, please consider citing our vision paper:
721
  ```
722
+ @misc{zhao2025se,
723
+ title={SWE-Arena: An Interactive Platform for Evaluating Foundation Models in Software Engineering},
724
+ author={Zhimin Zhao},
725
+ year={2025},
726
+ eprint={2502.01860},
727
+ archivePrefix={arXiv},
728
+ primaryClass={cs.SE},
729
+ url={https://arxiv.org/abs/2502.01860},
730
+ }
731
  ```
732
  """
733
  )