emvecchi commited on
Commit
137b465
1 Parent(s): 49d2940

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +47 -7
app.py CHANGED
@@ -74,17 +74,57 @@ assistance_choices = ['Expand the breadth of moderator role',
74
 
75
  default_choices = function_choices
76
 
77
- consent_text = 'By taking part in this study you agree that you read all the details in [the consent form](https://someurl.com) and that you give your consent to participate in the study.'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  guidelines_text = 'Please read <a href="https://someurl.com">the guidelines</a>'
79
  study_code = 'some code here'
80
 
81
  intro_fields: List[Field] = [
82
- #Field(type="container", title="**Introductory Questions:**", children=[
83
- Field(name="intro_moderation_goals", type="text", title="As a moderator, what are your goals/objectives for the comment section? (free text)"),
84
- Field(name="intro_experience", type="text", title="What do you feel contributes to a good experience for the users/discussion?"),
85
- Field(name="intro_valuable_comment", type="text", title="What makes a comment or contribution valuable?"),
86
- Field(name="intro_bad_comment", type="text", title="What makes a comment or contribution of poor quality, unconstructive or detrimental to the discussion?"),
87
- #]),
88
  ]
89
 
90
  fields: List[Field] = [
 
74
 
75
  default_choices = function_choices
76
 
77
+ consent_text = '''
78
+ **Consent Form**
79
+
80
+ You will be asked to take part in a research study. Before you decide to take part in this study, it is important that you understand why the study is being done and what it involves. Please read the following information carefully.
81
+ ________________________________________________________________________________________
82
+
83
+ Project title: Forms of User Moderation in Online Discussion
84
+ Researchers: N. Falk, E.M. Vecchi, I. Jundi, G. Lapesa
85
+ Institute: Institute for Machine Speech Processing (IMS)
86
+ University: University of Stuttgart
87
+ Contact: neele.falk@ims.uni-stuttgart.de
88
+ _________________________________________________________________________________________
89
+
90
+ Description of the research study
91
+
92
+ In this study, we investigate how users in online discussions take on certain functions of moderators in deliberation. The annotators' task is to evaluate whether a comment takes on any of the possible moderation functions described. In addition, we want to investigate to what extent such comments differ in style from expert moderators and whether the comment contributes in a constructive way to the discussion.
93
+
94
+ The intended use of the results of this study includes an analysis as well as processed versions of the collected data in the context of a publicly available scientific publication.
95
+
96
+ Time required: Your participation will take up to an estimated 1 hour. The time required may vary on an individual basis.
97
+
98
+ Risks and benefits: The risks to your participation in this online survey are those associated with basic computer tasks, including boredom, fatigue, mild stress, or breach of confidentiality. Some of the topics discussed in the online posts to be annotated may include violence, suicide or rape. The only benefit to you is the learning experience from participating in a research study. The benefit to society is the contribution to scientific knowledge
99
+
100
+ Compensation: You will be compensated for participating in this study. If you are interested, we will also be more than happy to share more information about our research with you.
101
+
102
+ Voluntary participation: Your participation in this study is voluntary. It is your decision whether or not to participate in this study. If you decide to participate in this study, you will be asked to confirm this consent form ("I agree."). Even after signing the consent form, you can withdraw from participation at any time and without giving any reason. Partial data will not be analysed.
103
+
104
+ Confidentiality: Your responses to this experiment will be anonymous. Please do not share any
105
+ Information that can be used to identify you. The researcher(s) will make every effort to maintain your confidentiality.
106
+
107
+ Contact: If at any time you have questions about this study or would like to report any adverse effects due to this study, please contact the researcher(s).
108
+
109
+ Trigger Warning: The texts included in this study are produced in an online debate forum and some topics that are discussed, how they are discussed, and user perspectives may be uncomfortable or sensitive. First, all texts included here do not represent the views of the researchers conducting the study. Secondly, we provide the option [described in detail in the guidelines provided in the next step] to avoid having to annotate any instance that is problematic or uncomfortable for the annotator without penalty of compensation.
110
+
111
+ Consent:
112
+ Please indicate, in the box below, that you are at least 18 years old, have read and understood this consent form, are comfortable using the English language to complete the survey, and you agree to participate in this online research survey.
113
+ I am age 18 or older.
114
+ I have read this consent form or had it read to me.
115
+ I am comfortable using the English language to participate in this survey.
116
+ I agree to participate in this research and I want to continue with the survey.
117
+ '''
118
+
119
+ #By taking part in this study you agree that you read all the details in [the consent form](https://someurl.com) and that you give your consent to participate in the study.'
120
  guidelines_text = 'Please read <a href="https://someurl.com">the guidelines</a>'
121
  study_code = 'some code here'
122
 
123
  intro_fields: List[Field] = [
124
+ Field(name="intro_moderation_goals", type="text", title="As a moderator, what are your goals/objectives for the comment section? (free text)"),
125
+ Field(name="intro_experience", type="text", title="What do you feel contributes to a good experience for the users/discussion?"),
126
+ Field(name="intro_valuable_comment", type="text", title="What makes a comment or contribution valuable?"),
127
+ Field(name="intro_bad_comment", type="text", title="What makes a comment or contribution of poor quality, unconstructive or detrimental to the discussion?"),
 
 
128
  ]
129
 
130
  fields: List[Field] = [