Spaces:
Runtime error
Runtime error
Commit
·
a2d5a45
1
Parent(s):
5e571ea
preview
Browse files
app.py
CHANGED
|
@@ -212,6 +212,15 @@ with gr.Blocks(theme=tufte_theme) as demo:
|
|
| 212 |
],
|
| 213 |
outputs=[vote_output, voting_row],
|
| 214 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 215 |
|
| 216 |
if __name__ == "__main__":
|
| 217 |
demo.launch(debug=True)
|
|
|
|
| 212 |
],
|
| 213 |
outputs=[vote_output, voting_row],
|
| 214 |
)
|
| 215 |
+
with gr.Accordion("View Dataset Progress...", open=False):
|
| 216 |
+
gr.Markdown("Below is the progress of the dataset so far!")
|
| 217 |
+
gr.HTML("""<iframe
|
| 218 |
+
src="https://huggingface.co/datasets/davanstrien/summer-reading-preference/embed/viewer"
|
| 219 |
+
frameborder="0"
|
| 220 |
+
width="100%"
|
| 221 |
+
height="560px"
|
| 222 |
+
></iframe>""")
|
| 223 |
+
|
| 224 |
|
| 225 |
if __name__ == "__main__":
|
| 226 |
demo.launch(debug=True)
|