Spaces:
Sleeping
Sleeping
Commit ·
496f292
1
Parent(s): da7ea76
Update app.py
Browse files
app.py
CHANGED
|
@@ -66,4 +66,26 @@ with gr.Blocks() as demo:
|
|
| 66 |
with gr.Row():
|
| 67 |
gr.Dataframe(final_df)
|
| 68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
demo.launch()
|
|
|
|
| 66 |
with gr.Row():
|
| 67 |
gr.Dataframe(final_df)
|
| 68 |
|
| 69 |
+
gr.Markdown("# How to Submit Your Model")
|
| 70 |
+
gr.Markdown(
|
| 71 |
+
"""
|
| 72 |
+
We warmly invite you to submit your model's responses for inclusion in our leaderboard. To participate, please email a CSV file containing your model's responses to [glitchbench@gmail.com](mailto:glitchbench@gmail.com). Successful submissions will be evaluated and will be featured on our leaderboard.
|
| 73 |
+
|
| 74 |
+
**CSV File Format:**
|
| 75 |
+
|
| 76 |
+
```
|
| 77 |
+
ImageId,Question,Output
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
- `ImageId`: The ID of the image. (If unsure how to find the Image ID, please [add instructions or a link here]).
|
| 81 |
+
- `Question`: The prompt used to query the model. We currently support only two question types:
|
| 82 |
+
1. "What is unusual about this image?"
|
| 83 |
+
2. "What is wrong with this image?"
|
| 84 |
+
- `Output`: The response generated by your model.
|
| 85 |
+
|
| 86 |
+
Ensure that your submissions follow these guidelines for a smooth evaluation process. We look forward to seeing your innovative models in action!
|
| 87 |
+
"""
|
| 88 |
+
)
|
| 89 |
+
|
| 90 |
+
|
| 91 |
demo.launch()
|