CrowdData
收藏资源简介:
CrowdData是一个开放的数据集仓库,汇集了包含个体投票的众包数据集。我们旨在提供标准格式的可用数据集(详见`下载`部分),以便它们可以直接用于实验,无需预处理工作。本仓库中的数据集主要用于分类任务(主要是文本分类,除了情感数据集)。CrowdData可以惠及研究混合使用机器和人在环分类任务的研究人员(仓库包含5个具有任务实际内容的数据集),人在分类和排序任务,基于众包数据的真相发现,人群偏差的估计,以及主动学习。
CrowdData is an open dataset repository that aggregates crowdsourced datasets containing individual votes. We aim to provide available datasets in a standardized format (see the `Download` section for details) so that they can be directly used for experiments without the need for preprocessing. The datasets in this repository are primarily used for classification tasks (mainly text classification, with the exception of sentiment datasets). CrowdData can benefit researchers studying hybrid machine and human-in-the-loop classification tasks (the repository includes 5 datasets with actual task content), human-involved classification and ranking tasks, truth discovery based on crowdsourced data, estimation of crowd bias, and active learning.
数据集概述
CrowdData是一个开放的数据集仓库,主要收集用于分类任务的众包数据集,特别是文本分类。数据集分为binary-classification和multi-class-classification两个类别,每个数据集都有其独立的文件夹,并包含指向原始来源的链接。
数据集列表
| 数据集名称 | 描述 | 任务数量 | 工人数量 | 总投票数 | 是否有真实标签 | 任务类型 | 任务内容 | 是否有“我不知道”选项 | 是否包含任务耗时信息 |
|---|---|---|---|---|---|---|---|---|---|
| Blue Birds | 识别图片是否包含蓝鸟 | 108 | 39 | 4212 | 是 | 二元 | 图片,不可用 | 否 | 否 |
| Crowdsourced Amazon Sentiment | 对亚马逊产品评论进行情感分析 | 1011 | 284 | 7803 | 是 | 二元 | 文本,可用 | 否 | 不可用 |
| Crowdsourced loneliness-slr | 评估论文与技术、老年人及干预的相关性 | 319 | 34 | 797 | 是 | 二元 | 文本,不可用 | 是 | 不可用 |
| HITspam-UsingCrowdflower | 判断Crowdflower数据中的HIT是否为“垃圾”任务 | 5380 | 153 | 42762 | 部分 | 二元 | 文本,不可用 | 否 | 不可用 |
| HITspam-UsingMTurk | 判断MTurk数据中的HIT是否为“垃圾”任务 | 5840 | 135 | 28354 | 部分 | 二元 | 文本,不可用 | 否 | 不可用 |
| Recognizing Textual Entailment | 判断给定文本是否暗示了假设句子的信息 | 800 | 164 | 8000 | 是 | 二元 | 文本,可用 | 否 | 不可用 |
| Sentiment popularity - AMT | 对电影评论中的句子进行正面或负面评价 | 500 | 143 | 10000 | 是 | 二元 | 文本,不可用 | 否 | 是 |
| Temporal Ordering | 判断一个事件是否在另一个事件之前发生 | 462 | 76 | 4620 | 是 | 二元 | 文本,部分可用 | 否 | 不可用 |
| Text Highlighting | 包含分类任务和文本高亮任务 | 685 | 1851 | 27711 | 是 | 二元 | 文本,可用 | 可能 | 可用 |
| Toloka Aggregation Relevance 2 | 2016年“相关性2级”项目中收集的匿名投票 | 99319 | 7139 | 475536 | 部分 | 二元 | 文本,不可用 | 否 | 不可用 |
| 2010 Crowdsourced Web Relevance Judgments Data | 对ClueWeb09集合中的英文网页进行相关性评价 | 20232 | 766 | 98453 | 是 | 多类,3类 | 文本,不可用 | 否 | 不可用 |
| AdultContent2 | 将网站分类为5个类别 | 11040 | 269 | 92721 | 部分 | 多类,5类 | 文本,不可用 | 否 | 不可用 |
| AdultContent3 | 将网站分类为4个类别 | 500 | 100 | 50000 | 否 | 多类,4类 | 文本,不可用 | 否 | 不可用 |
| Emotion | 根据文本评估情绪 | 700 | 10 | 7000 | 是 | 多类,区间(-100,100) | 文本,可用 | 否 | 不可用 |
| Toloka Aggregation Relevance 5 | 对文档与查询的相关性进行5级评价 | 363814 | 1274 | 1091918 | 部分 | 多类,5类 | 文本,不可用 | 否 | 不可用 |
| Weather Sentiment - AMT | 对300条天气相关推文进行情感分类 | 300 | 110 | 6000 | 是 | 多类,5类 | 文本,不可用 | 是 | 是 |
| Word Pair Similarity | 对给定文本分配0到10的相似度分数 | 30 | 10 | 300 | 是 | 多类,区间(0,10) | 文本,不可用 | 否 | 不可用 |
数据集下载与格式转换
CrowdData提供两个Python脚本用于下载和转换数据集至标准格式。首先运行download_datasets.py,然后运行transform_datasets.py。转换后的数据集将包含以下列:workerID, taskID, response, goldLabel, taskContent。仅Sentiment popularity - AMT和Weather Sentiment - AMT数据集将包含额外的timeSpent列。




