Background

I am setting up a data annotation task on mechanical turk. The user has has to give scores for pairs of sentences. Each pair of sentences has a table with 7 radio buttons. For each such table, the user MUST give an answer.

Problem

There are 194 such tables in the document, so it's easy to miss one. The user is not warned that ones of the questions has not been answered if he/she missed one or more when they hit submit, forcing us to reject their input because of a simple omission.

Restrictions

Unfortunately, we do not have the option of submitting each table as a separate hit because:

a) We need to know what the scores are for the complete data set for a single user.

b) We have quality control questions which the user must answer, and they cannot be informed which ones these are.

Question

Is there a simple way to make sure that users answer each question either by:

a) Raising a warning if they have not answered all questions? If so, how is this done?

b) Presenting each table on a separate page with users having to click "next" to get the next table, in which case it is still possible to miss one but less likely (as you don't have to scroll down a large page)? If so, how is this done?

Thanks in advance for any help or solutions towards solving this problem.

link|improve this question

75% accept rate
Are you posting this to mTurk as a question form (using the Amazon XML structures) or as an external question (hosted on your own web server)? – David Grandinetti Nov 11 '11 at 18:08
Just a question form. – Edward Grefenstette Nov 15 '11 at 11:02
feedback

1 Answer

Take a look at the mTurk API docs and specifically look at the QuestionFormStructure section.

If you format your Questions and add the IsRequired flag, which defaults to false if you don't explicitly set it.

<Question>
  <QuestionIdentifier>my_question_id</QuestionIdentifier>
  <DisplayName>My Question</DisplayName>
  <IsRequired>true</IsRequired>
  <QuestionContent>
    [...]
  </QuestionContent>
  <AnswerSpecification>
    [...]
  </AnswerSpecification>
</Question>

However, if you have 194 of these tables in a single HIT, you may be better off doing it as an external question so you can add some javascript to help people navigate to the parts they missed more quickly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.