Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
# - New responses are chunked (~300 chars each)
|
| 6 |
# - Each chunk is scored against the AI reference pool (pre-parsed chunks)
|
| 7 |
# - Chunk percentiles are averaged within each model, then averaged across models
|
| 8 |
-
# Flow: Prolific ID → 3 tasks (randomised) ×
|
| 9 |
# ---------------------------------------------------------
|
| 10 |
#
|
| 11 |
# CHANGELOG (v4 – Feb 2026)
|
|
@@ -47,7 +47,7 @@ QUALTRICS_REDIRECT_URL = "https://georgetown.az1.qualtrics.com/jfe/form/SV_9Fayb
|
|
| 47 |
CHAR_MIN = 300
|
| 48 |
CHAR_MAX = 600
|
| 49 |
|
| 50 |
-
SUBMISSIONS_PER_TASK =
|
| 51 |
|
| 52 |
# Column list for the history table
|
| 53 |
HIST_COLUMNS = ["Submission", "Response Preview", "Distinctiveness Score"]
|
|
@@ -128,7 +128,7 @@ interactive responses. You may interact with it as many or as few times as you l
|
|
| 128 |
(please aim for <b>300–600 characters</b>. Your submission will be blocked otherwise). \
|
| 129 |
When you're ready, click <b>"Copy to Submission Box"</b> to move your response to the \
|
| 130 |
submission box, then click <b>"Submit and Score."</b><br><br>\
|
| 131 |
-
You will complete <b>
|
| 132 |
After each submission, you will receive a Distinctiveness Score out of 100:<br><br>\
|
| 133 |
• A score closer to <b>0</b> means your response is <b>very similar</b> \
|
| 134 |
to a typical AI-generated response.<br>\
|
|
@@ -138,7 +138,7 @@ to a typical AI-generated response.<br>\
|
|
| 138 |
from a typical AI-generated response.<br><br>\
|
| 139 |
Your goal is to refine and develop your ideas so your submissions become increasingly \
|
| 140 |
distinct from the AI response. You will be able to see your response history and scores \
|
| 141 |
-
in a table after each submission, for a total of
|
| 142 |
Once you finish one task, click the <b>"Continue to the Next Task"</b> button to move on to the next.\
|
| 143 |
"""
|
| 144 |
|
|
|
|
| 5 |
# - New responses are chunked (~300 chars each)
|
| 6 |
# - Each chunk is scored against the AI reference pool (pre-parsed chunks)
|
| 7 |
# - Chunk percentiles are averaged within each model, then averaged across models
|
| 8 |
+
# Flow: Prolific ID → 3 tasks (randomised) × 4 submissions → Qualtrics redirect
|
| 9 |
# ---------------------------------------------------------
|
| 10 |
#
|
| 11 |
# CHANGELOG (v4 – Feb 2026)
|
|
|
|
| 47 |
CHAR_MIN = 300
|
| 48 |
CHAR_MAX = 600
|
| 49 |
|
| 50 |
+
SUBMISSIONS_PER_TASK = 4
|
| 51 |
|
| 52 |
# Column list for the history table
|
| 53 |
HIST_COLUMNS = ["Submission", "Response Preview", "Distinctiveness Score"]
|
|
|
|
| 128 |
(please aim for <b>300–600 characters</b>. Your submission will be blocked otherwise). \
|
| 129 |
When you're ready, click <b>"Copy to Submission Box"</b> to move your response to the \
|
| 130 |
submission box, then click <b>"Submit and Score."</b><br><br>\
|
| 131 |
+
You will complete <b>four submissions</b> per task, for a total of <b>three tasks</b>. \
|
| 132 |
After each submission, you will receive a Distinctiveness Score out of 100:<br><br>\
|
| 133 |
• A score closer to <b>0</b> means your response is <b>very similar</b> \
|
| 134 |
to a typical AI-generated response.<br>\
|
|
|
|
| 138 |
from a typical AI-generated response.<br><br>\
|
| 139 |
Your goal is to refine and develop your ideas so your submissions become increasingly \
|
| 140 |
distinct from the AI response. You will be able to see your response history and scores \
|
| 141 |
+
in a table after each submission, for a total of four submissions per task.<br><br>\
|
| 142 |
Once you finish one task, click the <b>"Continue to the Next Task"</b> button to move on to the next.\
|
| 143 |
"""
|
| 144 |
|