Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 948 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 948 Bytes

dawid_skene

This project is an implementation of the estimator for combining unreliable observations from Dawid and Skene (1979).

Given unreliable observations of patient classes by multiple observers, determine the most likely true class for each patient, class marginals, and individual error rates for each observer, using Expectation Maximization

The example from the paper can be executed by running this script from the command line, i.e.

python dawid_skene.py

Alternatively, it can be run within a python script as follows:

import dawid_skene

responses = dawid_skene.generate_sample_data()

dawid_skene.run(responses)

References: