Heyyaha commited on
Commit
d739019
·
verified ·
1 Parent(s): faaa58b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -56,9 +56,12 @@ def build_ui():
56
  sol3 = gr.Textbox(label="方案3", lines=10, interactive=False)
57
 
58
  select_radio = gr.Radio(choices=["1", "2", "3"], label="请选择你最满意的解决方案编号")
59
- user_solution = gr.Textbox(lines=6, label="📄 或者填写你自己的解决方案(可选)")
60
  comment = gr.Textbox(lines=4, label="📝 请对选择的方案填写选择理由或批注该方案的优缺点")
61
 
 
 
 
62
  submit = gr.Button("✅ 提交 RLHF 数据")
63
  feedback = gr.Textbox(label="系统反馈", interactive=False)
64
 
 
56
  sol3 = gr.Textbox(label="方案3", lines=10, interactive=False)
57
 
58
  select_radio = gr.Radio(choices=["1", "2", "3"], label="请选择你最满意的解决方案编号")
59
+
60
  comment = gr.Textbox(lines=4, label="📝 请对选择的方案填写选择理由或批注该方案的优缺点")
61
 
62
+ user_solution = gr.Textbox(lines=6, label="📄 或者填写你自己的解决方案(可选)")
63
+
64
+
65
  submit = gr.Button("✅ 提交 RLHF 数据")
66
  feedback = gr.Textbox(label="系统反馈", interactive=False)
67