1 Answer
- Newest
- Most votes
- Most comments
0
IM EIN ANI LI MI LI
Thanks to this answer:
https://stackoverflow.com/questions/12468424/how-to-make-an-answer-key-xml-for-a-multi-answer-checkbox-questionspec
I have two things learned:
-
There is no need to specify scores of zero. This is the default.
-
Using the following AnswerKey, the worker will get 100 only if marking dog+mouse and leaving 'cat' unchecked. any other combination will get her 0.
<AnswerKey xmlns="http://mechanicalturk.amazonaws.com/AWSMechanicalTurkDataSchemas/2005-10-01/AnswerKey.xsd">
<Question>
<QuestionIdentifier>identify_animals</QuestionIdentifier>
<AnswerOption>
<SelectionIdentifier>dog</SelectionIdentifier>
<SelectionIdentifier>mouse</SelectionIdentifier>
<AnswerScore>2</AnswerScore>
</AnswerOption>
</Question>
<QualificationValueMapping>
<PercentageMapping>
<MaximumSummedScore>2</MaximumSummedScore>
</PercentageMapping>
</QualificationValueMapping>
</AnswerKey>
I will add as a note that it is quite weird that Amazon's schema server, mechanicalturk.amazonaws.com, is totally unavailable.
answered 5 years ago
Relevant content
- asked 4 years ago
- AWS OFFICIALUpdated 4 months ago
