Comparing Bayesian Models of Annotation

Total Page:16

File Type:pdf, Size:1020Kb

Comparing Bayesian Models of Annotation Comparing Bayesian Models of Annotation Silviu Paun1 Bob Carpenter2 Jon Chamberlain3 Dirk Hovy4 Udo Kruschwitz3 Massimo Poesio1 1School of Electronic Engineering and Computer Science, Queen Mary University of London 2Department of Statistics, Columbia University 3School of Computer Science and Electronic Engineering, University of Essex 4Department of Marketing, Bocconi University Abstract Research suggests that models of annotation can solve these problems of standard practices when The analysis of crowdsourced annotations in natural language processing is con- applied to crowdsourcing (Dawid and Skene, cerned with identifying (1) gold standard 1979; Smyth et al., 1995; Raykar et al., 2010; labels, (2) annotator accuracies and biases, Hovy et al., 2013; Passonneau and Carpenter, and (3) item difficulties and error patterns. 2014). Such probabilistic approaches allow us Traditionally, majority voting was used for to characterize the accuracy of the annotators 1, and coefficients of agreement for 2 and 3. Lately, model-based analysis of corpus and correct for their bias, as well as account- annotations have proven better at all three ing for item-level effects. They have been shown tasks. But there has been relatively little to perform better than non-probabilistic alterna- work comparing them on the same datasets. tives based on heuristic analysis or adjudication This paper aims to fill this gap by ana- (Quoc Viet Hung et al., 2013). But even though lyzing six models of annotation, covering a large number of such models has been proposed different approaches to annotator ability, (Carpenter, 2008; Whitehill et al., 2009; Raykar item difficulty, and parameter pooling (tying) across annotators and items. We et al., 2010; Hovy et al., 2013; Simpson et al., evaluate these models along four aspects: 2013; Passonneau and Carpenter, 2014; Felt et al., comparison to gold labels, predictive accu- 2015a; Kamar et al., 2015; Moreno et al., 2015, in- racy for new annotations, annotator char- ter alia), it is not immediately obvious to potential acterization, and item difficulty, using four users how these models differ or, in fact, how they datasets with varying degrees of noise in the should be applied at all. To our knowledge, the form of random (spammy) annotators. We literature comparing models of annotation is lim- conclude with guidelines for model selec- ited, focused exclusively on synthetic data (Quoc tion, application, and implementation. Viet Hung et al., 2013) or using publicly available implementations that constrain the experiments al- 1 Introduction most exclusively to binary annotations (Sheshadri The standard methodology for analyzing crowd- and Lease, 2013). sourced data in NLP is based on majority vot- ing (selecting the label chosen by the majority of Contributions coders) and inter-annotator coefficients of agree- ment, such as Cohen’s κ (Artstein and Poesio, • Our selection of six widely used models 2008). However, aggregation by majority vote (Dawid and Skene, 1979; Carpenter, 2008; implicitly assumes equal expertise among the Hovy et al., 2013) covers models with vary- annotators. This assumption, though, has been re- ing degrees of complexity: pooled models, peatedly shown to be false in annotation prac- which assume all annotators share the same tice (Poesio and Artstein, 2005; Passonneau and ability; unpooled models, which model in- Carpenter, 2014; Plank et al., 2014b). Chance- dividual annotator parameters; and partially adjusted coefficients of agreement also have many pooled models, which use a hierarchical shortcomings—for example, agreements in mis- structure to let the level of pooling be dictated take, overly large chance-agreement in datasets by the data. with skewed classes, or no annotator bias correc- tion (Feinstein and Cicchetti, 1990; Passonneau • We carry out the evaluation on four datasets with and Carpenter, 2014). varying degrees of sparsity and annotator 571 Transactions of the Association for Computational Linguistics, vol. 6, pp. 571–585, 2018. Action Editor: Jordan Boyd-Graber. Submission batch: 3/2018; Revision batch: 6/2018; Published 12/2018. c 2018 Association for Computational Linguistics. Distributed under a CC-BY 4.0 license. Figure 2: Plate diagram of the Dawid and Skene model. Figure 1: Plate diagram for multinomial model. The hyperparameters are left out. 2.1 A Pooled Model accuracy in both gold-standard dependent Multinomial (MULTINOM) The simplest Bayesian and independent settings. model of annotation is the binomial model pro- posed in Albert and Dodd(2004) and discussed • We use fully Bayesian posterior inference to in Carpenter(2008). This model pools all annota- quantify the uncertainty in parameter esti- tors (i.e., assumes they have the same ability; see mates. Figure1). 1 The generative process is: • We provide guidelines for both model selec- • For every class k 2 f1; 2; :::; Kg: tion and implementation. – Draw class-level abilities K 2 Our findings indicate that models which in- ζk ∼ Dirichlet(1 ) clude annotator structure generally outperform • Draw class prevalence π ∼ Dirichlet(1K ) other models, though unpooled models can over- fit. Several open-source implementations of each • For every item i 2 f1; 2; :::; Ig: model type are available to users. – Draw true class ci ∼ Categorical(π) 2 Bayesian Annotation Models – For every position n 2 f1; 2; :::; Nig: ∗ Draw annotation All Bayesian models of annotation that we de- y ∼ Categorical(ζ ) scribe are generative: They provide a mechanism i;n ci to generate parameters θ characterizing the pro- 2.2 Unpooled Models cess (annotator accuracies and biases, prevalence, Dawid and Skene (D&S) The model proposed by etc.) from the prior p(θ), then generate the ob- Dawid and Skene (1979) is, to our knowledge, the served labels y from the parameters according to first model-based approach to annotation proposed the sampling distribution p(yjθ). Bayesian infer- in the literature.3 It has found wide application ence allows us to condition on some observed (e.g., Kim and Ghahramani, 2012; Simpson et al., data y to draw inferences about the parameters 2013; Passonneau and Carpenter, 2014). It is an θ; this is done through the posterior, p(θjy). unpooled model, namely, each annotator has their The uncertainty in such inferences may then be own response parameters (see Figure2), which are used in applications such as jointly training clas- given fixed priors. Its generative process is: sifiers (Smyth et al., 1995; Raykar et al., 2010), comparing crowdsourcing systems (Lease and • For every annotator j 2 f1; 2; :::; Jg: Kazai, 2011), or characterizing corpus accuracy (Passonneau and Carpenter, 2014). – For every class k 2 f1; 2; :::; Kg: This section describes the six models we eval- ∗ Draw class annotator abilities K uate. These models are drawn from the litera- βj;k ∼ Dirichlet(1 ) ture, but some had to be generalized from binary to multiclass annotations. The generalization nat- 1Carpenter(2008) parameterizes ability in terms of specificity urally comes with parameterization changes, al- and sensitivity. For multiclass annotations, we generalize to a though these do not alter the fundamentals of the full response matrix (Passonneau and Carpenter, 2014). models. (One aspect tied to the model parameter- 2Notation: 1K is a K-dimensional vector of 1 values. 3 ization is the choice of priors. The guideline we Dawid and Skene fit maximum likelihood estimates us- followed was to avoid injecting any class prefer- ing expectation maximization (EM), but the model is easily extended to include fixed prior information for regularization, ences a priori and let the data uncover this infor- or hierarchical priors for fitting the prior jointly with the abil- mation; see more in §3.) ity parameters and automatically performing partial pooling. 572 Figure 4: Plate diagram for the hierarchical Dawid and Skene model. Figure 3: Plate diagram for the MACE model. the overall population of annotators (see Figure4). This structure provides partial pooling, using in- • Draw class prevalence π ∼ Dirichlet(1K ) formation about the population to improve esti- mates of individuals by regularizing toward the • For every item i 2 f1; 2; :::; Ig: population mean. This is particularly helpful with – Draw true class ci ∼ Categorical(π) low count data as found in many crowdsourcing – For every position n 2 f1; 2; :::; Nig: tasks (Gelman et al., 2013). The full generative 6 ∗ Draw annotation process is as follows: y ∼ Categorical(β )4 i;n jj[i;n];ci • For every class k 2 f1; 2; :::; Kg: Multi-Annotator Competence Estimation (MACE) – Draw class ability means This model, introduced by Hovy et al.(2013), 0 ζk;k0 ∼ Normal(0; 1); 8k 2 f1; :::; Kg takes into account the credibility of the annotators 5 – Draw class s.d.’s and their spamming preference and strategy (see 0 Ω 0 ∼ HalfNormal(0; 1); 8k Figure3). This is another example of an unpooled k;k model, and possibly the model most widely • For every annotator j 2 f1; 2; :::; Jg: applied to linguistic data (e.g., Plank et al., 2014a; Sabou et al., 2014; Habernal and Gurevych, 2016, – For every class k 2 f1; 2; :::; Kg: inter alia). Its generative process is: ∗ Draw class annotator abilities 0 • For every annotator j 2 f1; 2; :::; Jg: βj;k;k0 ∼ Normal(ζk;k0 ; Ωk;k0 ); 8k – Draw spamming behavior • Draw class prevalence π ∼ Dirichlet(1K ) K j ∼ Dirichlet(10 ) • For every item i 2 f1; 2; :::; Ig: – Draw credibility θj ∼ Beta(0:5; 0:5) • For every item i 2 f1; 2; :::; Ig: – Draw true class ci ∼ Categorical(π) – For every position n 2 f1; 2; :::; Nig: – Draw true class ci ∼ Uniform ∗ Draw annotation yi;n ∼ – For every position n 2 f1; 2; :::; Nig: 7 Categorical(softmax(βjj[i;n];ci )) ∗ Draw a spamming indicator si;n ∼ Bernoulli(1 − θjj[i;n]) Item Difficulty (ITEMDIFF) We also test an exten- ∗ If si;n = 0 then: sion of the “Beta-Binomial by Item” model from · yi;n = ci Carpenter(2008), which does not assume any an- ∗ Else: notator structure; instead, the annotations of an item are made to depend on its intrinsic difficulty.
Recommended publications
  • STATISTICAL SCIENCE Volume 36, Number 3 August 2021
    STATISTICAL SCIENCE Volume 36, Number 3 August 2021 Khinchin’s 1929 Paper on Von Mises’ Frequency Theory of Probability . Lukas M. Verburgt 339 A Problem in Forensic Science Highlighting the Differences between the Bayes Factor and LikelihoodRatio...........................Danica M. Ommen and Christopher P. Saunders 344 A Horse Race between the Block Maxima Method and the Peak–over–Threshold Approach ..................................................................Axel Bücher and Chen Zhou 360 A Hybrid Scan Gibbs Sampler for Bayesian Models with Latent Variables ..........................Grant Backlund, James P. Hobert, Yeun Ji Jung and Kshitij Khare 379 Maximum Likelihood Multiple Imputation: Faster Imputations and Consistent Standard ErrorsWithoutPosteriorDraws...............Paul T. von Hippel and Jonathan W. Bartlett 400 RandomMatrixTheoryandItsApplications.............................Alan Julian Izenman 421 The GENIUS Approach to Robust Mendelian Randomization Inference .....................................Eric Tchetgen Tchetgen, BaoLuo Sun and Stefan Walter 443 AGeneralFrameworkfortheAnalysisofAdaptiveExperiments............Ian C. Marschner 465 Statistical Science [ISSN 0883-4237 (print); ISSN 2168-8745 (online)], Volume 36, Number 3, August 2021. Published quarterly by the Institute of Mathematical Statistics, 9760 Smith Road, Waite Hill, Ohio 44094, USA. Periodicals postage paid at Cleveland, Ohio and at additional mailing offices. POSTMASTER: Send address changes to Statistical Science, Institute of Mathematical Statistics, Dues and Subscriptions Office, PO Box 729, Middletown, Maryland 21769, USA. Copyright © 2021 by the Institute of Mathematical Statistics Printed in the United States of America Statistical Science Volume 36, Number 3 (339–492) August 2021 Volume 36 Number 3 August 2021 Khinchin’s 1929 Paper on Von Mises’ Frequency Theory of Probability Lukas M. Verburgt A Problem in Forensic Science Highlighting the Differences between the Bayes Factor and Likelihood Ratio Danica M.
    [Show full text]
  • A Matching Based Theoretical Framework for Estimating Probability of Causation
    A Matching Based Theoretical Framework for Estimating Probability of Causation Tapajit Dey and Audris Mockus Department of Electrical Engineering and Computer Science University of Tennessee, Knoxville Abstract The concept of Probability of Causation (PC) is critically important in legal contexts and can help in many other domains. While it has been around since 1986, current operationalizations can obtain only the minimum and maximum values of PC, and do not apply for purely observational data. We present a theoretical framework to estimate the distribution of PC from experimental and from purely observational data. We illustrate additional problems of the existing operationalizations and show how our method can be used to address them. We also provide two illustrative examples of how our method is used and how factors like sample size or rarity of events can influence the distribution of PC. We hope this will make the concept of PC more widely usable in practice. Keywords: Probability of Causation, Causality, Cause of Effect, Matching 1. Introduction Our understanding of the world comes from our knowledge about the cause-effect relationship between various events. However, in most of the real world scenarios, one event is caused by multiple other events, having arXiv:1808.04139v1 [stat.ME] 13 Aug 2018 varied degrees of influence over the first event. There are two major concepts associated with such relationships: Cause of Effect (CoE) and Effect of Cause (EoC) [1, 2]. EoC focuses on the question that if event X is the cause/one of the causes of event Y, then what is the probability of event Y given event Email address: [email protected], [email protected] (Tapajit Dey and Audris Mockus) Preprint submitted to arXiv July 2, 2019 X is observed? CoE, on the other hand, tries to answer the question that if event X is known to be (one of) the cause(s) of event Y, then given we have observed both events X and Y, what is the probability that event X was in fact the cause of event Y? In this paper, we focus on the CoE scenario.
    [Show full text]
  • December 2000
    THE ISBA BULLETIN Vol. 7 No. 4 December 2000 The o±cial bulletin of the International Society for Bayesian Analysis A WORD FROM already lays out all the elements mere statisticians might have THE PRESIDENT of the philosophical position anything to say to them that by Philip Dawid that he was to continue to could possibly be worth ISBA President develop and promote (to a listening to. I recently acted as [email protected] largely uncomprehending an expert witness for the audience) for the rest of his life. defence in a murder appeal, Radical Probabilism He is utterly uncompromising which revolved around a Modern Bayesianism is doing in his rejection of the realist variant of the “Prosecutor’s a wonderful job in an enormous conception that Probability is Fallacy” (the confusion of range of applied activities, somehow “out there in the world”, P (innocencejevidence) with supplying modelling, data and in his pragmatist emphasis P ('evidencejinnocence)). $ analysis and inference on Subjective Probability as Contents procedures to nourish parts that something that can be measured other techniques cannot reach. and regulated by suitable ➤ ISBA Elections and Logo But Bayesianism is far more instruments (betting behaviour, ☛ Page 2 than a bag of tricks for helping or proper scoring rules). other specialists out with their What de Finetti constructed ➤ Interview with Lindley tricky problems – it is a totally was, essentially, a whole new ☛ Page 3 original way of thinking about theory of logic – in the broad ➤ New prizes the world we live in. I was sense of principles for thinking ☛ Page 5 forcibly struck by this when I and learning about how the had to deliver some brief world behaves.
    [Show full text]
  • ALEXANDER PHILIP DAWID Emeritus Professor of Statistics University of Cambridge E-Mail: [email protected] Web
    ALEXANDER PHILIP DAWID Emeritus Professor of Statistics University of Cambridge E-mail: [email protected] Web: http://www.statslab.cam.ac.uk/∼apd EDUCATION 1967{69 University of London (Imperial College; University College) 1963{67 Cambridge University (Trinity Hall; Darwin College) 1956{63 City of London School QUALIFICATIONS 1982 ScD (Cantab.) 1970 MA (Cantab.) 1967 Diploma in Mathematical Statistics (Cantab.: Distinction) 1966 BA (Cantab.): Mathematics (Second Class Honours) 1963 A-levels: Mathematics and Advanced Mathematics (Double Distinction), Physics (Distinction) State Scholarship HONOURS AND AWARDS 2018 Fellow of the Royal Society 2016 Fellow of the International Society for Bayesian Analysis 2015 Honorary Lifetime Member, International Society for Bayesian Analysis 2013 Network Scholar of The MacArthur Foundation Research Network on Law and Neuroscience 2002 DeGroot Prize for a Published Book in Statistical Science 2001 Royal Statistical Society: Guy Medal in Silver 1978 Royal Statistical Society: Guy Medal in Bronze 1977 G. W. Snedecor Award for Best Publication in Biometry EMPLOYMENT ETC. 2013{ Emeritus Professor of Statistics, Cambridge University 2013{ Emeritus Fellow, Darwin College Cambridge 2007{13 Professor of Statistics and Director of the Cambridge Statistics Initiative, Cambridge University 2011{13 Director of Studies in Mathematics, Darwin College Cambridge 2007{13 Professorial Fellow, Darwin College Cambridge 1989{2007 Pearson Professor of Statistics, University College London 1983{93 Head, Department of Statistical Science, University College London 1982{89 Professor of Probability and Statistics, University College London 1981{82 Reader in Probability and Statistics, University College London 1978{81 Professor of Statistics, Head of Statistics Section, and Director of the Statistical Laboratory, Department of Mathematics, The City University, London 1969{78 Lecturer in Statistics, University College London VISITING POSITIONS ETC.
    [Show full text]
  • Theory and Applications of Proper Scoring Rules
    Theory and Applications of Proper Scoring Rules A. Philip Dawid, University of Cambridge and Monica Musio, Università di Cagliari Abstract We give an overview of some uses of proper scoring rules in statistical inference, including frequentist estimation theory and Bayesian model selection with improper priors. 1 Introduction The theory of proper scoring rules (PSRs) originated as an approach to probability forecasting (Dawid 1986), the general enterprise of forming and evaluating probabilistic predictions. The fundamental idea is to develop ways of motivating a forecaster to be honest in the predictions he announces, and of assessing the performance of announced probabilities in the light of the outcomes that eventuate. The early applications of this methodology were to meteorology (Brier 1950) and subjective Bayesianism (Good 1952; de Finetti 1975). However, it is becoming clear that the mathematical theory of PSRs has a wide range of other applications in Statistics generally. The aim of this paper is to give a brief outline of some of these. Some further details will appear in Dawid et al. (2014). After setting out the basic ideas and properties of PSRs in § 2, in § 3 we describe a number of important special cases. Section 4 describes how a PSR supplies an alternative to the likelihood function of a statistical model, and how this can be used to develop new estimators that may have useful properties of robustness and/or computational feasability. In particular, in § 5 we show that, by using an appropriate PSR, it is possible to avoid difficulties associated with intractable normalising constants. In § 6 the same ability to ignore a normalising constant is shown to supply an approach to Bayesian model selection with improper priors.
    [Show full text]
  • PHIL 8670 (Fall, 2015): Philosophy of Statistics
    PHIL 8670 (Fall, 2015): Philosophy of Statistics Samuel C. Fletcher September 12, 2015 Primary Email: scfl[email protected] Office Phone: 612-625-4325 Office Hours: 754 Heller Hall, Tuesdays 3 pm { 4 pm, and by appointment Class Period: 731 Heller Hall, Tuesdays 4 pm { 6 pm Course Description Statistical methods form a significant part of the methodology of every scientific discipline. This seminar will survey a number of central philosophical and conceptual issues in statistics. After a brief review of elementary probability theory and its interpretation, we will consider at length both the classical and Bayesian schools of statistics: their formulations, and arguments pro and con. We will then consider a third school, likelihoodism, that is sometimes considered a compromise between classical and Bayesian methodologies and has gained favor among some philosophers of science. This leads to the likelihood principle, a natural focal point in the debate between these schools on the nature of evidence. The remainder of the seminar will be split between topics on statistical modeling (model verification and model selection), connections between the philosophy of statistics and more traditional topics in the philosophy of science (simplicity, induction and confirmation) and the relation between statistics and causation (randomness, randomization and causal inference). Evaluation Each week, there will be a semi-formal presentation of that week's reading assignment aimed at stimulating a critical discussion. For the first meeting (or two) I will be responsible for presenting, and for each of the remaining meetings, one or two students will be responsible. Students not presenting during a given week are responsible instead for submitting a one- paragraph question about a philosophical/conceptual issue arising in that week's readings to those presenting (and me).
    [Show full text]
  • Computational and Financial Econometrics (CFE 2017)
    CFE-CMStatistics 2017 PROGRAMME AND ABSTRACTS 11th International Conference on Computational and Financial Econometrics (CFE 2017) http://www.cfenetwork.org/CFE2017 and 10th International Conference of the ERCIM (European Research Consortium for Informatics and Mathematics) Working Group on Computational and Methodological Statistics (CMStatistics 2017) http://www.cmstatistics.org/CMStatistics2017 Senate House & Birkbeck University of London, UK 16 – 18 December 2017 ⃝c ECOSTA ECONOMETRICS AND STATISTICS. All rights reserved. I CFE-CMStatistics 2017 ISBN 978-9963-2227-4-2 ⃝c 2017 - ECOSTA ECONOMETRICS AND STATISTICS Technical Editors: Gil Gonzalez-Rodriguez and Marc Hofmann. All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted, in any other form or by any means without the prior permission from the publisher. II ⃝c ECOSTA ECONOMETRICS AND STATISTICS. All rights reserved. CFE-CMStatistics 2017 International Organizing Committee: Ana Colubi, Erricos Kontoghiorghes, Marc Levene, Bernard Rachet, Herman Van Dijk. CFE 2017 Co-chairs: Veronika Czellar, Hashem Pesaran, Mike Pitt and Stefan Sperlich. CFE 2017 Programme Committee: Knut Are Aastveit, Alessandra Amendola, Josu Arteche, Monica Billio, Roberto Casarin, Gianluca Cubadda, Manfred Deistler, Jean-Marie Dufour, Ekkehard Ernst, Jean-David Fermanian, Catherine Forbes, Philip Hans Franses, Marc Hallin, Alain Hecq, David Hendry, Benjamin Holcblat, Jan Jacobs, Degui Li, Alessandra Luati, Richard Luger, J Isaac Miller, Claudio Morana, Bent
    [Show full text]
  • Hyper and Structural Markov Laws for Graphical Models
    Hyper and Structural Markov Laws for Graphical Models Simon Byrne Clare College and Statistical Laboratory, Department of Pure Mathematics and Mathematical Statistics This dissertation is submitted for the degree of Doctor of Philosophy University of Cambridge September 2011 Declaration This dissertation is the result of my own work and includes nothing which is the outcome of work done in collaboration except where specifically indi- cated in the text. iii Acknowledgements I would like to thank everyone who helped in the writing of this thesis, especially my supervisor Philip Dawid for the thoughtful discussions and advice over the past three years. I would also like to thank my colleagues in the Statistical Laboratory for their support and friendship. Finally I would like to thank my family, especially Rebecca, without whom I would never have been able to complete this work. v Summary My thesis focuses on the parameterisation and estimation of graphical mod- els, based on the concept of hyper and meta Markov properties. These state that the parameters should exhibit conditional independencies, similar to those on the sample space. When these properties are satisfied, parameter estima- tion may be performed locally, i.e. the estimators for certain subsets of the graph are determined entirely by the data corresponding to the subset. Firstly, I discuss the applications of these properties to the analysis of case-control studies. It has long been established that the maximum like- lihood estimates for the odds-ratio may be found by logistic regression, in other words, the “incorrect” prospective model is equivalent to the correct retrospective model.
    [Show full text]
  • Probability Forecasts and Prediction Markets A
    PROBABILITY FORECASTS AND PREDICTION MARKETS A. Philip Dawid - Julia Mortera ISSN 2279-6916 Working papers (Dipartimento di Economia Università degli studi Roma Tre) (online) Working Paper n° 250, 2019 I Working Papers del Dipartimento di Economia svolgono la funzione di divulgare tempestivamente, in forma definitiva o provvisoria, i risultati di ricerche scientifiche originali. La loro pubblicazione è soggetta all'approvazione del Comitato Scientifico. Per ciascuna pubblicazione vengono soddisfatti gli obblighi previsti dall'art. l del D.L.L. 31.8.1945, n. 660 e successive modifiche. Copie della presente pubblicazione possono essere richieste alla Redazione. esemplare fuori commercio ai sensi della legge 14 aprile 2004 n.106 REDAZIONE: Dipartimento di Economia Università degli Studi Roma Tre Via Silvio D'Amico, 77 - 00145 Roma Tel. 0039-06-57335655 fax 0039-06-57335771 E-mail: [email protected] http://dipeco.uniroma3.it PROBABILITY FORECASTS AND PREDICTION MARKETS A. Philip Dawid - Julia Mortera Comitato Scientifico: Fabrizio De Filippis Francesco Giuli Anna Giunta Paolo Lazzara Loretta Mastroeni Silvia Terzi Probability Forecasts and Prediction Markets Julia Mortera∗ A. Philip Dawidy Abstract We give an overview of various topics tied to the expression of uncertainty about a variable or event by means of a probability distribution. We first consider meth- ods used to evaluate a single probability forecaster and then revisit methods for combining several experts' distributions. We describe the implications of imposing coherence constraints, based on a specific understanding of \expertise". In the final part we revisit from a statistical standpoint some results in the economics literature on prediction markets, where individuals sequentially place bets on the outcome of a future event.
    [Show full text]
  • Extended Conditional Independence and Applications in Causal Inference
    The Annals of Statistics 2017, Vol. 45, No. 6, 1–36 https://doi.org/10.1214/16-AOS1537 © Institute of Mathematical Statistics, 2017 EXTENDED CONDITIONAL INDEPENDENCE AND APPLICATIONS IN CAUSAL INFERENCE BY PANAYIOTA CONSTANTINOU AND A. PHILIP DAWID University of Warwick and University of Cambridge The goal of this paper is to integrate the notions of stochastic conditional independence and variation conditional independence under a more general notion of extended conditional independence. We show that under appropri- ate assumptions the calculus that applies for the two cases separately (axioms of a separoid) still applies for the extended case. These results provide a rig- orous basis for a wide range of statistical concepts, including ancillarity and sufficiency, and, in particular, the Decision Theoretic framework for statistical causality, which uses the language and calculus of conditional independence in order to express causal properties and make causal inferences. 1. Introduction. Conditional independence is a concept that has been widely studied and used in Probability and Statistics. The idea of treating conditional in- dependence as an abstract concept with its own calculus was introduced by Dawid [12], who showed that many results and theorems concerning statistical concepts such as ancillarity, sufficiency, causality, etc., are just applications of general prop- erties of conditional independence—extended to encompass stochastic and non- stochastic variables together. Properties of conditional independence have also been investigated by Spohn [50] in connection with causality, and Pearl and Paz [45], Pearl [44], Geiger et al. [34], Lauritzen et al. [42] in connection with graphi- cal models. For further related theory, see [15–19, 27, 30].
    [Show full text]
  • Sufficient Covariate, Propensity Variable and Doubly Robust
    Sufficient Covariate, Propensity Variable and Doubly Robust Estimation Hui Guo, Philip Dawid and Giovanni Berzuini Abstract Statistical causal inference from observational studies often requires ad- justment for a possibly multi-dimensional variable, where dimension reduction is crucial. The propensity score, first introduced by Rosenbaumand Rubin,is a popular approach to such reduction. We address causal inference within Dawid’s decision- theoretic framework, where it is essential to pay attention to sufficient covariates and their properties. We examine the role of a propensity variable in a normal linear model. We investigate both population-based and sample-based linear regressions, with adjustments for a multivariate covariate and for a propensity variable. In ad- dition, we study the augmented inverse probability weighted estimator, involving a combination of a response model and a propensity model. In a linear regression with homoscedasticity, a propensity variable is proved to provide the same estimated causal effect as multivariate adjustment. An estimated propensity variable may, but need not, yield better precision than the true propensity variable. The augmented inverse probability weighted estimator is doubly robust and can improve precision if the propensity model is correctly specified. Hui Guo Centre for Biostatistics, Institute of Population Health, The University of Manch- arXiv:1501.07761v1 [math.ST] 30 Jan 2015 ester, Jean McFarlane Building, Oxford Road, Manchester M13 9PL, UK, e-mail: [email protected] Philip Dawid Statistical Laboratory, University of Cambridge, Wilberforce Road, Cambridge CB3 0WB, UK, e-mail: [email protected] Giovanni Berzuini Department of Brain and Behavioural Sciences, University of Pavia, Pavia, Italy, e-mail: [email protected] 1 2 Hui Guo, Philip Dawid and Giovanni Berzuini 1 Introduction Causal effects can be identified from well-designed experiments, such as ran- domised controlled trials (RCT), because treatment assignment is entirely unrelated to subjects’ characteristics, both observed and unobserved.
    [Show full text]
  • Decision-Theoretic Foundations for Statistical Causality
    Decision-theoretic foundations for statistical causality A. Philip Dawid∗ April 28, 2020 Abstract We develop a mathematical and interpretative foundation for the enterprise of decision-theoretic statistical causality (DT), which is a straightforward way of representing and addressing causal questions. DT reframes causal inference as \assisted decision-making", and aims to understand when, and how, I can make use of external data, typically observational, to help me solve a decision problem by taking advantage of assumed relationships between the data and my problem. The relationships embodied in any representation of a causal problem require deeper jus- tification, which is necessarily context-dependent. Here we clarify the considerations needed to support applications of the DT methodology. Exchangeability considerations are used to structure the required relationships, and a distinction drawn between intention to treat and intervention to treat forms the basis for the enabling condition of \ignorability". We also show how the DT perspective unifies and sheds light on other popular formalisa- tions of statistical causality, including potential responses and directed acyclic graphs. Key words: directed acyclic graph, exchangeability, extended conditional independence, ignor- ability, potential outcome, single world intervention graph 1 Introduction The decision-theoretic (DT) approach to statistical causality has been described and developed in a series of papers (Dawid 2000; Dawid 2002; Dawid 2003; Didelez et al. 2006; Dawid 2007a; Geneletti 2007; Dawid and Didelez 2008; Dawid and Didelez 2010; Guo and Dawid 2010; Geneletti and Dawid 2011; Dawid 2012; Berzuini et al. 2012b; Dawid and Constantinou 2014; Guo et al. 2016); for general overview see Dawid (2007b); Dawid (2015).
    [Show full text]