Spaces:
Sleeping
Sleeping
Commit
·
59daede
1
Parent(s):
0ec1892
Update app.py
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ INSTRUCTIONS = """
|
|
58 |
<li><strong>Login:</strong> Use the login button at the top to login with your Hugging Face Account.</li>
|
59 |
<li><strong>Start Labeling:</strong> Click the 'Start Labeling' button to begin.</li>
|
60 |
<li><strong>View Image:</strong> An image from the GlitchBench dataset will be displayed.</li>
|
61 |
-
<li><strong>
|
62 |
<li><strong>Submit:</strong> Click 'Submit' to save your description. You can also use 'I Don't Know' if you can't spot the bug or unusual part of the image, or 'Skip' if you don't want to provide a description for the given image.</li>
|
63 |
<li><strong>Continue:</strong> Move on to the next image and repeat the process.</li>
|
64 |
</ol>
|
@@ -212,6 +212,10 @@ with gr.Blocks() as demo:
|
|
212 |
|
213 |
start_button = gr.Button("Start Labeling")
|
214 |
|
|
|
|
|
|
|
|
|
215 |
username_label.attach_load_event(set_username, None)
|
216 |
|
217 |
with gr.Row():
|
|
|
58 |
<li><strong>Login:</strong> Use the login button at the top to login with your Hugging Face Account.</li>
|
59 |
<li><strong>Start Labeling:</strong> Click the 'Start Labeling' button to begin.</li>
|
60 |
<li><strong>View Image:</strong> An image from the GlitchBench dataset will be displayed.</li>
|
61 |
+
<li><strong>Briefly describe in 1-2 sentences what you find <strong>wrong or unusual</strong> about this game scene. <strong>There is at least one thing wrong/unusual </strong>.</li>
|
62 |
<li><strong>Submit:</strong> Click 'Submit' to save your description. You can also use 'I Don't Know' if you can't spot the bug or unusual part of the image, or 'Skip' if you don't want to provide a description for the given image.</li>
|
63 |
<li><strong>Continue:</strong> Move on to the next image and repeat the process.</li>
|
64 |
</ol>
|
|
|
212 |
|
213 |
start_button = gr.Button("Start Labeling")
|
214 |
|
215 |
+
gr.HTML(
|
216 |
+
"<strong>Briefly describe in 1-2 sentences what you find <strong>wrong or unusual</strong> about this game scene. <strong>There is at least one thing wrong/unusual </strong>."
|
217 |
+
)
|
218 |
+
|
219 |
username_label.attach_load_event(set_username, None)
|
220 |
|
221 |
with gr.Row():
|