kostis-init commited on
Commit
bb9ae17
Β·
1 Parent(s): 3205c31

add dataset citation

Browse files
Files changed (1) hide show
  1. src/ui.py +17 -2
src/ui.py CHANGED
@@ -102,9 +102,9 @@ def create_ui():
102
  " python user_eval.py --submission_file path/to/my/submission.jsonl\n"
103
  " ```\n"
104
  " This will evaluate your submission locally and print the results to the console.\n"
105
- "4. **Modelling Frameworks**: Currently, the supported modelling frameworks are MiniZinc, CPMpy and OR-Tools. More frameworks will be added.\n"
106
  "\n\n"
107
- "### If you have any questions or issues, please feel free to reach out to us TODO\n"
108
  "---\n"
109
  )
110
 
@@ -164,4 +164,19 @@ def create_ui():
164
  outputs=[leaderboard]
165
  )
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  return demo
 
102
  " python user_eval.py --submission_file path/to/my/submission.jsonl\n"
103
  " ```\n"
104
  " This will evaluate your submission locally and print the results to the console.\n"
105
+ "4. **Modelling Frameworks**: Currently, the supported modelling frameworks are MiniZinc, CPMpy and OR-Tools. More frameworks can be added (feel free to submit pull requests).\n"
106
  "\n\n"
107
+ "### If you have any questions or issues, please feel free to reach out to us."
108
  "---\n"
109
  )
110
 
 
164
  outputs=[leaderboard]
165
  )
166
 
167
+ gr.Markdown(
168
+ "### If you found our work useful, please consider citing our paper and dataset as follows:\n"
169
+ "```bibtex\n"
170
+ "@dataset{michailidis_2025_15592407,"
171
+ "author = {Michailidis, Kostis and Tsouros, Dimosthenis and Guns, Tias},"
172
+ "title = {CP-Bench},"
173
+ "month = jun,"
174
+ "year = 2025,"
175
+ "publisher = {Zenodo},"
176
+ "version = {1.0.0},"
177
+ "doi = {10.5281/zenodo.15592407},"
178
+ "url = {https://doi.org/10.5281/zenodo.15592407},"
179
+ "}"
180
+ )
181
+
182
  return demo