Update README.md
Browse files
README.md
CHANGED
@@ -30,4 +30,46 @@ dataset_info:
|
|
30 |
dtype: bool
|
31 |
- name: banned
|
32 |
dtype: bool
|
33 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
dtype: bool
|
31 |
- name: banned
|
32 |
dtype: bool
|
33 |
+
---
|
34 |
+
# Toloker Graph: Interaction of Crowd Annotators
|
35 |
+
|
36 |
+
## Dataset Description
|
37 |
+
|
38 |
+
- **Homepage:** <https://github.com/Toloka/TolokerGraph>
|
39 |
+
- **Repository:** <https://github.com/Toloka/TolokerGraph>
|
40 |
+
- **Point of Contact:** @dustalov
|
41 |
+
|
42 |
+
### Dataset Summary
|
43 |
+
|
44 |
+
This repository contains a graph representing interactions between crowd annotators on a project labeled on the [Toloka](https://toloka.ai/) crowdsourcing platform (see the [Toloka overview](https://toloka.ai/en/docs/guide/concepts/overview) for the details on the used terminology).
|
45 |
+
|
46 |
+
The graph contains 11,759 nodes and 519,000 edges. Each node represents an individual annotator; nodes are provided with four numerical and three categorical features. An edge is drawn between a pair of annotators if they annotated the same task. Also, each node is provided with a label showing whether the annotator was banned on this project, or not.
|
47 |
+
|
48 |
+
### Nodes
|
49 |
+
|
50 |
+
Nodes are stored in the [nodes.tsv](nodes.tsv) file in the TSV format of the following structure:
|
51 |
+
|
52 |
+
- `id`: unique identifier of the annotator
|
53 |
+
- `approved_rate`: percentage of the approved labels of this annotator
|
54 |
+
- `skipped_rate`: percentage of the skipped tasks of this annotator
|
55 |
+
- `expired_rate`: percentage of the expired tasks of this annotator
|
56 |
+
- `rejected_rate`: percentage of the rejected labels of this annotator
|
57 |
+
- `education`: level of education as self-reported by this annotator (`none`, `basic`, `middle`, `high`)
|
58 |
+
- `english_profile`: knowledge of English as self-reported by this annotator (`0` for no, `1` for yes)
|
59 |
+
- `english_tested`: whether the annotator passed the Toloka language test for English (`0` for no, `1` for yes)
|
60 |
+
- `banned`: whether the annotator was banned on this project (`0` for no, `1` for yes)
|
61 |
+
|
62 |
+
The `*_rate` attributes should sum up to 1.
|
63 |
+
|
64 |
+
### Edges
|
65 |
+
|
66 |
+
Edges are stored in the [edges.tsv](edges.tsv) file in the TSV format of the following structure:
|
67 |
+
|
68 |
+
- `source`: source identifier of the annotator
|
69 |
+
- `target`: target identifier of the annotator
|
70 |
+
|
71 |
+
As the graph is undirected, `source` and `target` can be interchanged for the given pair of nodes.
|
72 |
+
|
73 |
+
## Copyright
|
74 |
+
|
75 |
+
Licensed under the Creative Commons Attribution 4.0 License. See LICENSE file for more details.
|