luulinh90s
commited on
Commit
Β·
0b2d6d0
1
Parent(s):
6420f62
update
Browse files- templates/attribution.html +1 -1
- templates/experiment.html +2 -2
- templates/index.html +3 -0
- templates/introduction.html +1 -1
templates/attribution.html
CHANGED
@@ -162,7 +162,7 @@
|
|
162 |
This multi-level highlighting helps users quickly grasp both the broad context and the specific details that support the system's answer.
|
163 |
</p>
|
164 |
<p>
|
165 |
-
During the experiment, you will
|
166 |
</p>
|
167 |
<button onclick="location.href='{{ url_for('index') }}'">Proceed to Experiment</button>
|
168 |
</div>
|
|
|
162 |
This multi-level highlighting helps users quickly grasp both the broad context and the specific details that support the system's answer.
|
163 |
</p>
|
164 |
<p>
|
165 |
+
During the experiment, you will use explanations to predict model output. Your task will be to look at the provided explanations and predict if the model verifies the Statement as TRUE or FALSE.
|
166 |
</p>
|
167 |
<button onclick="location.href='{{ url_for('index') }}'">Proceed to Experiment</button>
|
168 |
</div>
|
templates/experiment.html
CHANGED
@@ -84,11 +84,11 @@
|
|
84 |
<div class="buttons">
|
85 |
<form action="{{ url_for('feedback') }}" method="post">
|
86 |
<input type="hidden" name="session_id" value="{{ session_id }}">
|
87 |
-
<button type="submit" name="prediction" value="TRUE">
|
88 |
</form>
|
89 |
<form action="{{ url_for('feedback') }}" method="post">
|
90 |
<input type="hidden" name="session_id" value="{{ session_id }}">
|
91 |
-
<button type="submit" name="prediction" value="FALSE" class="reject">
|
92 |
</form>
|
93 |
</div>
|
94 |
</div>
|
|
|
84 |
<div class="buttons">
|
85 |
<form action="{{ url_for('feedback') }}" method="post">
|
86 |
<input type="hidden" name="session_id" value="{{ session_id }}">
|
87 |
+
<button type="submit" name="prediction" value="TRUE">Model will predict TRUE</button>
|
88 |
</form>
|
89 |
<form action="{{ url_for('feedback') }}" method="post">
|
90 |
<input type="hidden" name="session_id" value="{{ session_id }}">
|
91 |
+
<button type="submit" name="prediction" value="FALSE" class="reject">Model will predict FALSE</button>
|
92 |
</form>
|
93 |
</div>
|
94 |
</div>
|
templates/index.html
CHANGED
@@ -134,6 +134,9 @@
|
|
134 |
<body>
|
135 |
<div class="container">
|
136 |
<h1>Trustworthy LLMs for Table QA</h1>
|
|
|
|
|
|
|
137 |
<form id="method-form" action="{{ url_for('index') }}" method="post" onsubmit="return validateForm();">
|
138 |
<label for="username">Hi there πππ ! What is your name?</label>
|
139 |
<input type="text" id="username" name="username" required>
|
|
|
134 |
<body>
|
135 |
<div class="container">
|
136 |
<h1>Trustworthy LLMs for Table QA</h1>
|
137 |
+
<div class="instruction">
|
138 |
+
Let's get started! Please input your name, enter a random number as your seed, and select one of the explanation methods for your experiment.
|
139 |
+
</div>
|
140 |
<form id="method-form" action="{{ url_for('index') }}" method="post" onsubmit="return validateForm();">
|
141 |
<label for="username">Hi there πππ ! What is your name?</label>
|
142 |
<input type="text" id="username" name="username" required>
|
templates/introduction.html
CHANGED
@@ -194,7 +194,7 @@
|
|
194 |
</tr>
|
195 |
</table>
|
196 |
</body></html>
|
197 |
-
<h3>Prediction:</span> TRUE</h3>
|
198 |
</body></html>
|
199 |
"></iframe>
|
200 |
</div>
|
|
|
194 |
</tr>
|
195 |
</table>
|
196 |
</body></html>
|
197 |
+
<h3>Model Prediction:</span> TRUE</h3>
|
198 |
</body></html>
|
199 |
"></iframe>
|
200 |
</div>
|