Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -99,9 +99,15 @@ with gr.Blocks(theme=gr.themes.Default(text_size=gr.themes.sizes.text_md)) as de
|
|
| 99 |
''' ## Today's Scores
|
| 100 |
'''
|
| 101 |
)
|
| 102 |
-
|
| 103 |
-
''
|
| 104 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 105 |
gr.Markdown(
|
| 106 |
''' ## Like or Dislike
|
| 107 |
You're given a short review of a movie, book or restaurant.
|
|
|
|
| 99 |
''' ## Today's Scores
|
| 100 |
'''
|
| 101 |
)
|
| 102 |
+
with gr.Column(scale=1):
|
| 103 |
+
gr.Image('icon_robot.png', height=80, width=80, min_width=80, show_label=False, show_share_button=False, interactive=False, container=False)
|
| 104 |
+
with gr.Column(scale=4):
|
| 105 |
+
tot_scores_1 = gr.Markdown(
|
| 106 |
+
''' ### <p style="text-align: center;"> Machine   ''' + str(int(0)) + '''   VS   ''' + str(int(0)) + '''   Human </p>'''
|
| 107 |
+
)
|
| 108 |
+
with gr.Column(scale=1):
|
| 109 |
+
gr.Image('icon_user.png', height=80, width=80, min_width=80, show_label=False, show_share_button=False, interactive=False, container=False)
|
| 110 |
+
|
| 111 |
gr.Markdown(
|
| 112 |
''' ## Like or Dislike
|
| 113 |
You're given a short review of a movie, book or restaurant.
|