luulinh90s
commited on
Commit
•
4aa9c39
1
Parent(s):
ecc53f5
update
Browse files
templates/subjective.html
CHANGED
@@ -54,34 +54,32 @@
|
|
54 |
|
55 |
<form id="feedbackForm" action="{{ url_for('subjective', session_id=session_id) }}" method="post">
|
56 |
<div class="question">
|
57 |
-
<p>
|
58 |
<div class="likert">
|
59 |
<div class="likert-option">
|
60 |
<input type="radio" name="understanding" value="1" id="understanding1" required>
|
61 |
-
<label for="understanding1">
|
62 |
</div>
|
63 |
<div class="likert-option">
|
64 |
<input type="radio" name="understanding" value="2" id="understanding2">
|
65 |
-
<label for="understanding2">
|
66 |
</div>
|
67 |
<div class="likert-option">
|
68 |
<input type="radio" name="understanding" value="3" id="understanding3">
|
69 |
-
<label for="understanding3">
|
70 |
</div>
|
71 |
<div class="likert-option">
|
72 |
<input type="radio" name="understanding" value="4" id="understanding4">
|
73 |
-
<label for="understanding4">
|
74 |
</div>
|
75 |
<div class="likert-option">
|
76 |
<input type="radio" name="understanding" value="5" id="understanding5">
|
77 |
-
<label for="understanding5">
|
78 |
</div>
|
79 |
</div>
|
80 |
</div>
|
81 |
|
82 |
<button type="submit">Submit Feedback</button>
|
83 |
</form>
|
84 |
-
|
85 |
-
<!-- Remove the JavaScript event listener as we're now submitting to the server -->
|
86 |
</body>
|
87 |
</html>
|
|
|
54 |
|
55 |
<form id="feedbackForm" action="{{ url_for('subjective', session_id=session_id) }}" method="post">
|
56 |
<div class="question">
|
57 |
+
<p>How well do you think you understand the reasoning process of the Table QA model?</p>
|
58 |
<div class="likert">
|
59 |
<div class="likert-option">
|
60 |
<input type="radio" name="understanding" value="1" id="understanding1" required>
|
61 |
+
<label for="understanding1">Very Poor</label>
|
62 |
</div>
|
63 |
<div class="likert-option">
|
64 |
<input type="radio" name="understanding" value="2" id="understanding2">
|
65 |
+
<label for="understanding2">Poor</label>
|
66 |
</div>
|
67 |
<div class="likert-option">
|
68 |
<input type="radio" name="understanding" value="3" id="understanding3">
|
69 |
+
<label for="understanding3">Fair</label>
|
70 |
</div>
|
71 |
<div class="likert-option">
|
72 |
<input type="radio" name="understanding" value="4" id="understanding4">
|
73 |
+
<label for="understanding4">Good</label>
|
74 |
</div>
|
75 |
<div class="likert-option">
|
76 |
<input type="radio" name="understanding" value="5" id="understanding5">
|
77 |
+
<label for="understanding5">Very Good</label>
|
78 |
</div>
|
79 |
</div>
|
80 |
</div>
|
81 |
|
82 |
<button type="submit">Submit Feedback</button>
|
83 |
</form>
|
|
|
|
|
84 |
</body>
|
85 |
</html>
|