Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -472,14 +472,14 @@ with gr.Blocks(theme=gr.themes.Soft(), css=".gradio-container {max-width: 960px
|
|
472 |
with gr.Column(scale=1):
|
473 |
sample_audio = gr.Audio(label="样例音频", value=DIMENSIONS_DATA[0]["audio"])
|
474 |
with gr.Column(scale=2):
|
475 |
-
gr.Markdown("#### 请为以下特征打分 (0-5
|
476 |
sample_sliders = [gr.Slider(minimum=0, maximum=5, step=1, label=f"Sub-dim {i+1}", visible=False, interactive=True) for i in range(MAX_SUB_DIMS)]
|
477 |
go_to_pretest_btn = gr.Button("我明白了,开始测试", variant="primary")
|
478 |
|
479 |
with pretest_page:
|
480 |
gr.Markdown("## 测试说明\n"
|
481 |
"- 对于每一道题,你都需要对全部 **5 个维度** 进行评估。\n"
|
482 |
-
"- 在每个维度下,请为出现的每个特征 **从0到5
|
483 |
"- 完成5个维度的打分后,你将需要做出“人类”或“机器人”的 **最终判断**。\n"
|
484 |
"- 你可以使用“上一维度”和“下一维度”按钮在5个维度间自由切换和修改分数。")
|
485 |
go_to_test_btn = gr.Button("开始测试", variant="primary")
|
@@ -489,7 +489,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=".gradio-container {max-width: 960px
|
|
489 |
question_progress_text = gr.Markdown()
|
490 |
test_dimension_title = gr.Markdown()
|
491 |
test_audio = gr.Audio(label="测试音频")
|
492 |
-
gr.Markdown("--- \n ### 请为以下特征打分 (0-5分。0
|
493 |
test_sliders = [gr.Slider(minimum=0, maximum=5, step=1, label=f"Sub-dim {i+1}", visible=False, interactive=True) for i in range(MAX_SUB_DIMS)]
|
494 |
with gr.Row():
|
495 |
prev_dim_btn = gr.Button("上一维度")
|
|
|
472 |
with gr.Column(scale=1):
|
473 |
sample_audio = gr.Audio(label="样例音频", value=DIMENSIONS_DATA[0]["audio"])
|
474 |
with gr.Column(scale=2):
|
475 |
+
gr.Markdown("#### 请为以下特征打分 (0-5分。0对应机器,5对应人类)")
|
476 |
sample_sliders = [gr.Slider(minimum=0, maximum=5, step=1, label=f"Sub-dim {i+1}", visible=False, interactive=True) for i in range(MAX_SUB_DIMS)]
|
477 |
go_to_pretest_btn = gr.Button("我明白了,开始测试", variant="primary")
|
478 |
|
479 |
with pretest_page:
|
480 |
gr.Markdown("## 测试说明\n"
|
481 |
"- 对于每一道题,你都需要对全部 **5 个维度** 进行评估。\n"
|
482 |
+
"- 在每个维度下,请为出现的每个特征 **从0到5打分。0代表认为回应内容在该特征上完全表现出机器特征;5代表完全表现出人类特征**。\n"
|
483 |
"- 完成5个维度的打分后,你将需要做出“人类”或“机器人”的 **最终判断**。\n"
|
484 |
"- 你可以使用“上一维度”和“下一维度”按钮在5个维度间自由切换和修改分数。")
|
485 |
go_to_test_btn = gr.Button("开始测试", variant="primary")
|
|
|
489 |
question_progress_text = gr.Markdown()
|
490 |
test_dimension_title = gr.Markdown()
|
491 |
test_audio = gr.Audio(label="测试音频")
|
492 |
+
gr.Markdown("--- \n ### 请为以下特征打分 (0-5分。0对应机器,5对应人类)")
|
493 |
test_sliders = [gr.Slider(minimum=0, maximum=5, step=1, label=f"Sub-dim {i+1}", visible=False, interactive=True) for i in range(MAX_SUB_DIMS)]
|
494 |
with gr.Row():
|
495 |
prev_dim_btn = gr.Button("上一维度")
|