我正在mTurck上创建一个任务,我希望人们根据一个简单的问题以1到100的等级对句子进行排名。
问题是我希望每位Turker的每1个HIT排名100个句子,因为每人一个句子(或仅仅一打或两个句子)对我来说不够好。
我希望一次只显示一个句子,并使用某种“下一步”按钮,而不是让Turker滚动将100个句子作为单个网页抛出(出于方便的原因)。最重要的是,我希望Turker能够在对所有100个句子(或其他任意数目)进行评分之后才能提交HIT。
我已经为一个问题创建了基本的HTML代码,但是我不知道如何创建一个下一个按钮,该按钮将使我可以让图尔克人一个接一个地回答问题,而不必顾名思义。< / p>
这是一个单一情感的html代码:
<!-- You must include this JavaScript file -->
<script src="https://assets.crowd.aws/crowd-html-elements.js"></script>
<!-- You must include crowd-form so that your task submits answers to MTurk -->
<crowd-form answer-format="flatten-objects">
<p>
Read the piece of text below and use the slider below indicate how much do you agree with the following statement:
</p>
<p><strong>
A statement(doesn't change) (0 = it doesn't bother me at all, 100 = it really bothers me): <br></br><br></br>
</strong>
${original_text}
</p>
<p>
<p><crowd-slider style="width: 800px; height: 20px;" name="mistakeRate" min="1" max="100" required pin/></p>
</p>
</crowd-form>
如果您有一个想法,或者什至还有其他模板可以让我根据需要创建任务,我将不胜感激。
谢谢, 奥菲尔