Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -62,6 +62,12 @@ property_choices = ['appropriateness',
|
|
62 |
'reciprocity',
|
63 |
'reference',
|
64 |
'Other (please specify)']
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
default_choices = function_choices
|
66 |
|
67 |
|
@@ -93,6 +99,14 @@ fields: List[Field] = [
|
|
93 |
Field(name="relevant_properties_other", type="text", title="*If Other, please specify:*"),
|
94 |
]),
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
Field(name="other_comments", type="text", title="Additional comments: *(optional)*"),
|
97 |
]
|
98 |
INPUT_FIELD_DEFAULT_VALUES = {'slider': 0,
|
|
|
62 |
'reciprocity',
|
63 |
'reference',
|
64 |
'Other (please specify)']
|
65 |
+
assistance_choices = ['Assist with recall',
|
66 |
+
'Improve speed of moderation tasks',
|
67 |
+
'Manage prioritization of comments to consider',
|
68 |
+
'Visualization of properties narrows down moderator contribution',
|
69 |
+
'Other (please specify)']
|
70 |
+
|
71 |
default_choices = function_choices
|
72 |
|
73 |
|
|
|
99 |
Field(name="relevant_properties_other", type="text", title="*If Other, please specify:*"),
|
100 |
]),
|
101 |
|
102 |
+
Field(type="container", title="**Moderator Assistance**", children=[
|
103 |
+
Field(name="to_moderate", type="radio",
|
104 |
+
title="If this comment/discussion was flagged to you, would it be helpful in your task of moderation?"),
|
105 |
+
Field(name="mod_assistance", type="multiselect",
|
106 |
+
title="If yes, please motivate the benefit it would contribute to the task. *(Multiple selection possible)*", other_params={'choices': assistance_choices}),
|
107 |
+
Field(name="mod_assistance_other", type="text", title="*If Other, please specify:*"),
|
108 |
+
]),
|
109 |
+
|
110 |
Field(name="other_comments", type="text", title="Additional comments: *(optional)*"),
|
111 |
]
|
112 |
INPUT_FIELD_DEFAULT_VALUES = {'slider': 0,
|