我正在尝试为 Amazon mechnaical turk 中的两步图像分类调查创建一个模板(大约 10k 受访者)。
1 step 看图选择A/B/C/D
如果 B 是选择的选项,则显示
2 step 再看同一张图,选择E/F/G/H
目前,具有人群元素的图像分类功能非常有限——它允许在一页上发布两个问题,但不允许根据条件显示第二个问题。
这是我目前正在使用的代码
<crowd-image-classifier
src="${image_url}"
categories="['A', 'B', 'C', 'D']"
header="Describe the picture"
name="category">
</crowd-image-classifier>
<crowd-image-classifier
src="${image_url}"
categories="['E', 'F', 'G', 'H']"
header="Look again, what do you think is the reason for it"
name="category1">
</crowd-image-classifier>