entropy_threshold
crowdkit.postprocessing.entropy_threshold.entropy_threshold
| Source code
entropy_threshold(
answers: DataFrame,
workers_skills: Optional[Series] = None,
percentile: int = 10,
min_answers: int = 2
)
Entropy thresholding postprocessing: filters out all answers by workers,
whos' entropy (uncertanity) of answers is below specified percentile.
This heuristic detects answers of workers that answer the same way too often, e.g. when "speed-running" by only clicking one button.
Parameters Description
Parameters | Type | Description |
---|---|---|
answers |
DataFrame | Workers' labeling results. A pandas.DataFrame containing |
workers_skills |
Optional[Series] | workers' skills. A pandas.Series index by workers and holding corresponding worker's skill |
-
Returns:
pd.DataFrame
-
Return type:
Examples:
Fraudent worker always answers the same and gets filtered out.
answers = pd.DataFrame.from_records(
[
{'task': '1', 'worker': 'A', 'label': frozenset(['dog'])},
{'task': '1', 'worker': 'B', 'label': frozenset(['cat'])},
{'task': '2', 'worker': 'A', 'label': frozenset(['cat'])},
{'task': '2', 'worker': 'B', 'label': frozenset(['cat'])},
{'task': '3', 'worker': 'A', 'label': frozenset(['dog'])},
{'task': '3', 'worker': 'B', 'label': frozenset(['cat'])},
]
)
entropy_threshold(answers)