Spaces:
Sleeping
Sleeping
Add citation
Browse files
app.py
CHANGED
@@ -356,24 +356,22 @@ with gr.Blocks() as demo:
|
|
356 |
outputs=[evaluation_output, leaderboard_output]
|
357 |
)
|
358 |
|
359 |
-
gr.
|
360 |
"""
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
<button onclick="navigator.clipboard.writeText(document.getElementById('citation-bibtex').innerText)">Copy Citation</button>
|
372 |
"""
|
373 |
)
|
374 |
|
375 |
|
376 |
-
|
377 |
# ---------- Scheduler (Optional) ----------
|
378 |
scheduler = BackgroundScheduler()
|
379 |
def restart_space():
|
|
|
356 |
outputs=[evaluation_output, leaderboard_output]
|
357 |
)
|
358 |
|
359 |
+
gr.Markdown(
|
360 |
"""
|
361 |
+
### 📙 Citation
|
362 |
+
If you use the Food Portion Benchmark dataset in your research, please cite our work as follows:
|
363 |
+
```bibtex
|
364 |
+
@misc{foodportionbenchmark2025,
|
365 |
+
title={Paper Title},
|
366 |
+
author={Authors},
|
367 |
+
year={2025},
|
368 |
+
note={Under Review}
|
369 |
+
}
|
370 |
+
```
|
|
|
371 |
"""
|
372 |
)
|
373 |
|
374 |
|
|
|
375 |
# ---------- Scheduler (Optional) ----------
|
376 |
scheduler = BackgroundScheduler()
|
377 |
def restart_space():
|