Detecting Change in Data Streams

Total Page:16

File Type:pdf, Size:1020Kb

Detecting Change in Data Streams Detecting Change in Data Streams Daniel Kifer, Shai Ben-David, Johannes Gehrke Department of Computer Science Cornell University Abstract data streams, we may want to give separate answers for each time interval where the underlying data distri- Detecting changes in a data stream is an im- bution is stable. Most existing work has concentrated portant area of research with many appli- on algorithms that adapt to changing distributions ei- cations. In this paper, we present a novel ther by discarding old data or giving it less weight [17]. method for the detection and estimation of However, to the best of our knowledge, previous work change. In addition to providing statisti- does not contain a formal definition of change and thus cal guarantees on the reliability of detected existing algorithms cannot specify precisely when and changes, our method also provides meaning- how the underlying distribution changes. ful descriptions and quantification of these In this paper we make a first step towards formal- changes. Our approach assumes that the izing the detection and quantification of change in a points in the stream are independently gen- data stream. We assume that the data points are gen- erated, but otherwise makes no assumptions erated sequentially and independently by some under- on the nature of the generating distribution. lying probability distribution. Our goal is to detect Thus our techniques work for both continuous when this distribution changes, and to quantify and and discrete data. In an experimental study describe this change. we demonstrate the power of our techniques. It is unrealistic to allow data stream processing al- gorithms enough memory capacity to store the full 1 Introduction history of the stream. Therefore we base our change- In many applications, data is not static but arrives detection algorithm on a two-window paradigm. The in data streams. Besides the algorithmic difference algorithm compares the data in some “reference win- between processing data streams and static data, there dow” to the data in a current window. Both widows is another significant difference. For static datasets, it contain a fixed number of successive data points. The is reasonable to assume that the data was generated by current window slides forward with each incoming data a fixed process, for example, the data is a sample from point, and the reference window is updated whenever a static distribution. But a data stream has necessarily a change is detected. We analyze this paradigm and a temporal dimension, and the underlying process that develop algorithms (or tests) that can be supported by generates the data stream can change over time [17, 1, proven guarantees on their sensitivity to change, their 23]. The quantification and detection of such change robustness against raising false alarms, and their run- is one of the fundamental challenges in data stream ning time. Furthermore, we aim to obtain not only settings. reliable change detection, but also a comprehensible Change has far-reaching impact on any data pro- description of the nature of the detected change. cessing algorithm. For example, when constructing data stream mining models [17, 1], data that arrived 1.1 Applications before a change can bias the models towards charac- teristics that no longer hold. If we process queries over A change detection test with the above properties has many interesting applications: Permission to copy without fee all or part of this material is Quality Control. A factory manufactures beams granted provided that the copies are not made or distributed for made from a metal alloy. The strengths of a sample direct commercial advantage, the VLDB copyright notice and of the beams can be measured during quality testing. the title of the publication and its date appear, and notice is Estimating the amount of defective beams and deter- given that copying is by permission of the Very Large Data Base Endowment. To copy otherwise, or to republish, requires a fee mining the statistical significance of this number are and/or special permission from the Endowment. well-studied problems in the statistics community [5]. Proceedings of the 30th VLDB Conference, However, even if the number of defective beams does Toronto, Canada, 2004 not change, the factory can still benefit by analyzing 180 the distribution of beam strengths over time. Changes Our last requirement is motivated by the users of in this distribution can signal the development of a our test. A user not only wants to be notified that problem or give evidence that a new manufacturing the underlying distribution has changed, but she also technique is creating an improvement. Information wants to know how it has changed. Thus we want a test that describes the change could also help in analysis that does not only detects changes, but also describes of the technique. the change in a user-understandable way. Data Mining. Suppose a data stream mining algo- In summary, we want a change detection test with rithm is creating a data mining model that describes these four properties: the rate of spurious detections certain aspects of the data stream. The data mining (false positives) and the rate of missed detections (false model does not need to change as long as the under- negatives) can be controlled, it is non-parametric, and lying data distribution is stable. However, for suffi- it provides a description of the detected change. ciently large changes in the distribution that generates the data stream, the model will become inaccurate. In 1.3 An Informal Motivation of our Approach this case it is better to completely remove the contri- butions of old data (which arrived before the change) Let us start by discussing briefly how our work relates from the model rather than to wait for enough new to the most common non-parametric statistical test data to come in and outweigh the stale data. Fur- for change detection, the Wilcoxon test [24]. (Recall ther information about where the change has occurred that parametric tests are unsuitable as we do not want could help the user avoid rebuilding the entire model to restrict the applicability of our work to data that – if the change is localized, it may only be necessary follows certain parametric distributions.) to rebuild part of the model. The Wilcoxon test is a statistical test that measures the tendency of one sample to contain values that are larger than those in the other sample. We can control 1.2 Statistical Requirements the probability that the Wilcoxon test raises a false Recall that our basic approach to change detection in alarm. However, this test only permits the detection data streams uses two sliding windows over the data of certain limited kinds of changes, such as a change stream. This reduces the problem of detecting change in the mean of a normal distribution. Furthermore, it over a data stream to the problem of testing whether does not give a meaningful description of the changes the two samples in the windows were generated by dif- it detects. ferent distributions. Consequently, we start by consid- We address the issue of two-way guarantees by us- ering the case of detecting a difference in distribution ing a distance function (between distributions) to help between two input samples. Assume that two datasets describe the change. Given a distance function, our S1 and S2 where generated by two probability distri- test provides guarantees of the form: “to detect a dis- butions, P1,P2. A natural question to ask is: Can we tance > between two distributions P1 and P2, we will infer from S1 and S2 whether they were generated by need samples of at most n points from the each of P1 the same distribution P1 = P2, or is it the case that and P2.” P1 6= P2? To answer this question, we need to design Let us start by considering possible distance func- a “test” that can tell us whether P1 and P2 are differ- tions. One possibility is to use powerful information ent. Assuming that we take this approach, what are theoretic distances, such as the Jensen-Shannon Di- our requirements on such a test? vergence (JSD) [19]. However, to use these measures Our first requirement is that the test should have we need discrete distributions and it may also be hard two-way guarantees: We want the guarantee that our to explain the idea of entropy to the average end-user. test detects true changes with high probability, i.e.,it There exist many other common measures of distance should have few false negatives. But we also want the between distributions, but they are either too insensi- test to notify us only if a true change has occurred, tive or too sensitive. For example, the commonly used i.e.,it should have few false positives. Furthermore we L1 distance is too sensitive and can require arbitrarily need to be able to extend those guarantees from the large samples to determine if two distributions have L1 two-sample problem to the data stream. distance > [4]. At the other extreme, Lp norms (for There are also practical considerations that affect p > 1) are far too insensitive: two distributions D1 and p our choice of test. If we know that the distribution of D2 can be close in the L norm and yet can have this the data has a certain parametric form (for example, undesirable property: all events with nonzero proba- it is a normal distribution), then we can draw upon bility under D1 have 0 probability under D2. Based decades of research in the statistics community where on these shortcomings of existing work, we introduce powerful tests have been developed.Unfortunately, real in Section 3 a new distance metric that is specifically data is rarely that well-behaved in practice; it does not tailored to find distribution changes while providing follow “nice” parametric distributions.
Recommended publications
  • Quickest Change Detection
    1 Quickest Change Detection Venugopal V. Veeravalli and Taposh Banerjee ECE Department and Coordinated Science Laboratory 1308 West Main Street, Urbana, IL 61801 Email: vvv, [email protected]. Tel: +1(217) 333-0144, Fax: +1(217) 244-1642. Abstract The problem of detecting changes in the statistical properties of a stochastic system and time series arises in various branches of science and engineering. It has a wide spectrum of important applications ranging from machine monitoring to biomedical signal processing. In all of these applications the observations being monitored undergo a change in distribution in response to a change or anomaly in the environment, and the goal is to detect the change as quickly as possibly, subject to false alarm constraints. In this chapter, two formulations of the quickest change detection problem, Bayesian and minimax, are introduced, and optimal or asymptotically optimal solutions to these formulations are discussed. Then some generalizations and extensions of the quickest change detection problem are described. The chapter is concluded with a discussion of applications and open issues. I. INTRODUCTION The problem of quickest change detection comprises three entities: a stochastic process under obser- vation, a change point at which the statistical properties of the process undergo a change, and a decision maker that observes the stochastic process and aims to detect this change in the statistical properties of arXiv:1210.5552v1 [math.ST] 19 Oct 2012 the process. A false alarm event happens when the change is declared by the decision maker before the change actually occurs. The general objective of the theory of quickest change detection is to design algorithms that can be used to detect the change as soon as possible, subject to false alarm constraints.
    [Show full text]
  • Unsupervised Network Anomaly Detection Johan Mazel
    Unsupervised network anomaly detection Johan Mazel To cite this version: Johan Mazel. Unsupervised network anomaly detection. Networking and Internet Architecture [cs.NI]. INSA de Toulouse, 2011. English. tel-00667654 HAL Id: tel-00667654 https://tel.archives-ouvertes.fr/tel-00667654 Submitted on 8 Feb 2012 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 5)µ4& &OWVFEFMPCUFOUJPOEV %0$503"5%&-6/*7&34*5²%&506-064& %ÏMJWSÏQBS Institut National des Sciences Appliquées de Toulouse (INSA de Toulouse) $PUVUFMMFJOUFSOBUJPOBMFBWFD 1SÏTFOUÏFFUTPVUFOVFQBS Mazel Johan -F lundi 19 décembre 2011 5J tre : Unsupervised network anomaly detection ED MITT : Domaine STIC : Réseaux, Télécoms, Systèmes et Architecture 6OJUÏEFSFDIFSDIF LAAS-CNRS %JSFDUFVS T EFʾÒTF Owezarski Philippe Labit Yann 3BQQPSUFVST Festor Olivier Leduc Guy Fukuda Kensuke "VUSF T NFNCSF T EVKVSZ Chassot Christophe Vaton Sandrine Acknowledgements I would like to first thank my PhD advisors for their help, support and for letting me lead my research toward my own direction. Their inputs and comments along the stages of this thesis have been highly valuable. I want to especially thank them for having been able to dive into my work without drowning, and then, provide me useful remarks.
    [Show full text]
  • Statistical Methods for Change Detection - Michèle Basseville
    CONTROL SYSTEMS, ROBOTICS AND AUTOMATION – Vol. XVI - Statistical Methods for Change Detection - Michèle Basseville STATISTICAL METHODS FOR CHANGE DETECTION Michèle Basseville Institut de Recherche en Informatique et Systèmes Aléatoires, Rennes, France Keywords: change detection, statistical methods, early detection, small deviations, fault detection, fault isolation, component faults, statistical local approach, vibration monitoring. Contents 1. Introduction 1.1. Motivations for Change Detection 1.2. Motivations for Statistical Methods 1.3. Three Types of Change Detection Problems 2. Foundations-Detection 2.1. Likelihood Ratio and CUSUM Tests 2.1.1. Hypotheses Testing 2.1.2. On-line Change Detection 2.2. Efficient Score for Small Deviations 2.3. Other Estimating Functions for Small Deviations 3. Foundations-Isolation 3.1. Isolation as Nuisance Elimination 3.2. Isolation as Multiple Hypotheses Testing 3.3. On-line Isolation 4. Case Studies-Vibrations Glossary Bibliography Biographical Sketch Summary Handling parameterized (or parametric) models for monitoring industrial processes is a natural approach to fault detection and isolation. A key feature of the statistical approach is its ability to handle noises and uncertainties. Modeling faults such as deviations in the parameter vector with respect to (w.r.t.) its nominal value calls for the use of statisticalUNESCO change detection and isolation – EOLSS methods. The purpose of this article is to introduce key concepts for the design of such algorithms. SAMPLE CHAPTERS 1. Introduction 1.1 Motivations for Change Detection Many monitoring problems can be stated as the problem of detecting and isolating a change in the parameters of a static or dynamic stochastic system. The use of a model of the monitored system is reasonable, since many industrial processes rely on physical principles, which write in terms of (differential) equations, providing us with (dynamical) models.
    [Show full text]
  • A Survey of Change Detection Methods Based on Remote Sensing Images for Multi-Source and Multi-Objective Scenarios
    remote sensing Article A Survey of Change Detection Methods Based on Remote Sensing Images for Multi-Source and Multi-Objective Scenarios Yanan You , Jingyi Cao * and Wenli Zhou School of Artificial Intelligence, Beijing University of Posts and Telecommunications, Beijing 100876, China; [email protected] (Y.Y.); [email protected] (W.Z.) * Correspondence: [email protected] Received: 11 June 2020; Accepted: 27 July 2020; Published: 31 July 2020 Abstract: Quantities of multi-temporal remote sensing (RS) images create favorable conditions for exploring the urban change in the long term. However, diverse multi-source features and change patterns bring challenges to the change detection in urban cases. In order to sort out the development venation of urban change detection, we make an observation of the literatures on change detection in the last five years, which focuses on the disparate multi-source RS images and multi-objective scenarios determined according to scene category. Based on the survey, a general change detection framework, including change information extraction, data fusion, and analysis of multi-objective scenarios modules, is summarized. Owing to the attributes of input RS images affect the technical selection of each module, data characteristics and application domains across different categories of RS images are discussed firstly. On this basis, not only the evolution process and relationship of the representative solutions are elaborated in the module description, through emphasizing the feasibility of fusing diverse data and the manifold application scenarios, we also advocate a complete change detection pipeline. At the end of the paper, we conclude the current development situation and put forward possible research direction of urban change detection, in the hope of providing insights to the following research.
    [Show full text]
  • Change Detection Algorithms
    25 2 Change Detection Algorithms In this chapter, we describe the simplest change detection algorithms. We consider a sequence of indepen- y p y k dent random variables k with a probability density depending upon only one scalar parameter. t 0 1 0 Before the unknown change time 0 , the parameter is equal to , and after the change it is equal to . The problems are then to detect and estimate this change in the parameter. The main goal of this chapter is to introduce the reader to the design of on-line change detection al- gorithms, basically assuming that the parameter 0 before change is known. We start from elementary algorithms originally derived using an intuitive point of view, and continue with conceptually more involved but practically not more complex algorithms. In some cases, we give several possible derivations of the same algorithm. But the key point is that we introduce these algorithms within a general statistical framework, based upon likelihood techniques, which will be used throughout the book. Our conviction is that the early introduction of such a general approach in a simple case will help the reader to draw up a unified mental picture of change detection algorithms in more complex cases. In the present chapter, using this general approach and for this simplest case, we describe several on-line algorithms of increasing complexity. We also discuss the off-line point of view more briefly. The main example, which is carried through this chapter, is concerned with the detection of a change in the mean of an independent Gaussian sequence.
    [Show full text]
  • (Quickest) Change Detection: Classical Results and New Directions Liyan Xie, Student Member, IEEE, Shaofeng Zou, Member, IEEE, Yao Xie, Member, IEEE, and Venugopal V
    1 Sequential (Quickest) Change Detection: Classical Results and New Directions Liyan Xie, Student Member, IEEE, Shaofeng Zou, Member, IEEE, Yao Xie, Member, IEEE, and Venugopal V. Veeravalli, Fellow, IEEE Abstract—Online detection of changes in stochastic systems, reason, the modern sequential change detection problem’s referred to as sequential change detection or quickest change scope has been extended far beyond its traditional setting, detection, is an important research topic in statistics, signal often challenging the assumptions made by classical methods. processing, and information theory, and has a wide range of applications. This survey starts with the basics of sequential These challenges include complex spatial and temporal de- change detection, and then moves on to generalizations and pendence of the data streams, transient and dynamic changes, extensions of sequential change detection theory and methods. We high-dimensionality, and structured changes, as explained be- also discuss some new dimensions that emerge at the intersection low. These challenges have fostered new advances in sequen- of sequential change detection with other areas, along with a tial change detection theory and methods in recent years. selection of modern applications and remarks on open questions. (1) Complex data distributions. In modern applications, sequential data could have a complex spatial and temporal dependency, for instance, induced by the network structure I. INTRODUCTION [16], [68], [167]. In social networks, dependencies are usually HE efficient detection of abrupt changes in the statistical due to interaction and information diffusion [116]: users in T behavior of streaming data is a classical and fundamental the social network have behavior patterns influenced by their problem in signal processing and statistics.
    [Show full text]
  • Robust Change Detection and Change Point Estimation for Poisson Count Processes Marcus B
    Florida State University Libraries Electronic Theses, Treatises and Dissertations The Graduate School 2004 Robust Change Detection and Change Point Estimation for Poisson Count Processes Marcus B. Perry Follow this and additional works at the FSU Digital Library. For more information, please contact [email protected] THE FLORIDA STATE UNIVERSITY COLLEGE OF ENGINEERING ROBUST CHANGE DETECTION AND CHANGE POINT ESTIMATION FOR POISSON COUNT PROCESSES By Marcus B. Perry A Dissertation submitted to the Department of Industrial Engineering in partial fulfillment of the requirements for the degree of Doctor of Philosophy Degree Awarded: Summer Semester, 2004 Copyright © 2004 Marcus B. Perry All Rights Reserved The members of the Committee approve the dissertation of Marcus B. Perry defended on May 28, 2004. _______________________________ Joseph J. Pignatiello Jr. Professor Directing Dissertation _______________________________ Anuj Srivastava Outside Committee Member _______________________________ James R. Simpson Committee Member _______________________________ Chuck Zhang Committee Member Approved: _________________________________ Ben Wang, Chair, Department of Industrial and Manufacturing Engineering _________________________________ Ching-Jen Chen, Dean, College of Engineering The Office of Graduate Studies has verified and approved the above named committee members. ii ACKNOWLEDGEMENTS I would like to express my appreciation to Dr. Joseph Pignatiello and Dr. James Simpson for their excellent mentoring and contributions to this manuscript.
    [Show full text]
  • A Markovian Approach to Unsupervised Change Detection with Multiresolution and Multimodality SAR Data
    remote sensing Article A Markovian Approach to Unsupervised Change Detection with Multiresolution and Multimodality SAR Data David Solarna *,† , Gabriele Moser *,† and Sebastiano B. Serpico *,† Department of Electrical, Electronic, Telecommunication Engineering and Naval Architecture, University of Genoa, Via All’Opera Pia 11A, 16145 Genoa, Italy * Correspondence: [email protected] (D.S.); [email protected] (G.M.); [email protected] (S.B.S.); Tel.: +39-010-3532190 (G.M.) † These authors contributed equally to this work. Received: 4 October 2018; Accepted: 19 October 2018; Published: 23 October 2018 Abstract: In the framework of synthetic aperture radar (SAR) systems, current satellite missions make it possible to acquire images at very high and multiple spatial resolutions with short revisit times. This scenario conveys a remarkable potential in applications to, for instance, environmental monitoring and natural disaster recovery. In this context, data fusion and change detection methodologies play major roles. This paper proposes an unsupervised change detection algorithm for the challenging case of multimodal SAR data collected by sensors operating at multiple spatial resolutions. The method is based on Markovian probabilistic graphical models, graph cuts, linear mixtures, generalized Gaussian distributions, Gram–Charlier approximations, maximum likelihood and minimum mean squared error estimation. It benefits from the SAR images acquired at multiple spatial resolutions and with possibly different modalities on the considered acquisition times to generate an output change map at the finest observed resolution. This is accomplished by modeling the statistics of the data at the various spatial scales through appropriate generalized Gaussian distributions and by iteratively estimating a set of virtual images that are defined on the pixel grid at the finest resolution and would be collected if all the sensors could work at that resolution.
    [Show full text]
  • Change Detection Under Autocorrelation ∑
    Change detection under autocorrelation Maarten Speekenbrink ([email protected]), Matthew A. Twyman ([email protected]) Nigel Harvey ([email protected]) Cognitive, Perceptual and Brain Sciences, University College London Gower Street, London WC1E 6BT, England Abstract psychologists working within the Skinnerian tradition used judgment (visual inference) to assess whether a manipulation Judgmental detection of changes in time series is an ubiqui- tous task. Previous research has shown that human observers changed some aspect of an animal’s behaviour represented are often relatively poor at detecting change, especially when as a time series. They argued that this is a conservative ap- the series are serially dependent (autocorrelated). We present proach because only large effects can be detected (e.g., Baer, two experiments in which participants were asked to judge the occurrence of changes in time series with varying levels of au- 1977). Their claims were not directly tested. However, when tocorrelation. Results show that autocorrelation increases the behaviour analysts later used the same approach to assess hu- difficulty of discriminating change from no change, and that man patients, there was concern that the shorter pre-treatment observers respond to this increased difficulty by biasing their decisions towards change. This results in increased false alarm baselines in the series impaired visual inference. As a result, rates, while leaving hit rates relatively intact. We present a ra- some experiments were carried out to investigate how accu- tional (Bayesian) model of change detection and compare it to rately people can detect change. two heuristic models that ignore autocorrelation in the series.
    [Show full text]
  • An Unsupervised Change Detection Method Using Time-Series of Polsar Images from Radarsat-2 and Gaofen-3
    sensors Article An Unsupervised Change Detection Method Using Time-Series of PolSAR Images from Radarsat-2 and GaoFen-3 Wensong Liu, Jie Yang *, Jinqi Zhao ID , Hongtao Shi and Le Yang State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing, Wuhan University, Wuhan 430079, China; [email protected] (W.L.); [email protected] (J.Z.); [email protected] (H.S.); [email protected] (L.Y.) * Correspondence: [email protected]; Tel.: +86-139-7151-2278 Received: 31 December 2017; Accepted: 6 February 2018; Published: 12 February 2018 Abstract: The traditional unsupervised change detection methods based on the pixel level can only detect the changes between two different times with same sensor, and the results are easily affected by speckle noise. In this paper, a novel method is proposed to detect change based on time-series data from different sensors. Firstly, the overall difference image of the time-series PolSAR is calculated by omnibus test statistics, and difference images between any two images in different times are acquired by Rj test statistics. Secondly, the difference images are segmented with a Generalized Statistical Region Merging (GSRM) algorithm which can suppress the effect of speckle noise. Generalized Gaussian Mixture Model (GGMM) is then used to obtain the time-series change detection maps in the final step of the proposed method. To verify the effectiveness of the proposed method, we carried out the experiment of change detection using time-series PolSAR images acquired by Radarsat-2 and Gaofen-3 over the city of Wuhan, in China.
    [Show full text]
  • Event Detection in Artigo Data
    Bachelorarbeit in Informatik Event Detection in ARTigo Data Sebastian Ruhl¨ Aufgabensteller: Prof. Dr. Bry, Dr. Zimek, Dr. Schefels Betreuer: Dr. Schefels, Dr. Zimek, E. Schubert Abgabedatum: 26.10.2016 Erkl¨arung Hiermit versichere ich, dass ich diese Bachelorar- beit selbst¨andig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel verwendet habe. Munchen,¨ den 26.10.2016 ..................................................... Sebastian Ruhl¨ Zusammenfassung Im letzen Jahrzehnt wurden auf der ARTigo Platform beschreibene Tags fur¨ historische Kunstwerke mit der Hilfe von verschidenen 'games with a pur- pose'(Spiele mit einem Zweck) gesammelt. Mit Hilfe des Erstellungsdatums der Kunstwerke, werden in dieser Arbeit kunsthistorische Events ermittelt. Dafur¨ wird die Verwendung der einzelnen Tags uber¨ die Zeit untersucht. Um die Events zu lokalisieren wird eine Anderungspunktanalyse¨ durchgefuhrt.¨ In dieser Arbeit werden die n¨otigen Schritte besproschen um die gesammelten Daten in ein geignetes Eingabeformat fur¨ passende Algorithmen zu konver- stieren. Der Hauptfokus liegt dabei auf CUSUM Algortihms so wie der offline Anderungspunktanalyse.¨ In diesem Zusammenhang wird die Annahme einer Normal- und Log-Normalverteiltung, sowie der Einfluss der Varianz in diesen untersucht. Die Ergebnisse werden mit Ergebnissen vom Signi-Trend Algo- rithmus verglichen. Am Ende bekommen Kunsthistoriker die M¨oglichkeit die Daten selbst zu analysieren. Dazu werden die Algorithmen in das ELKI Frame- work implementiert. Außerdem wird dem Artigo Analyse Center Komponente fur¨ Anderungspunktanalysen¨ hinzugefugt.¨ Abstract In the last decade the ARTigo platform collected descriptive tags for historic artworks through the help of different games with a purpose (GWAP). Using the additional provided creation date of the artworks, the goal of this thesis is to detect events relevant in an art historic context.
    [Show full text]
  • Sequential Change-Point Detection Whenunknown Parameters Are
    The Annals of Statistics 2006, Vol. 34, No. 1, 92–122 DOI: 10.1214/009053605000000859 c Institute of Mathematical Statistics, 2006 SEQUENTIAL CHANGE-POINT DETECTION WHEN UNKNOWN PARAMETERS ARE PRESENT IN THE PRE-CHANGE DISTRIBUTION1 By Yajun Mei California Institute of Technology and Fred Hutchinson Cancer Research Center In the sequential change-point detection literature, most research specifies a required frequency of false alarms at a given pre-change distribution fθ and tries to minimize the detection delay for every possible post-change distribution gλ. In this paper, motivated by a number of practical examples, we first consider the reverse question by specifying a required detection delay at a given post-change dis- tribution and trying to minimize the frequency of false alarms for every possible pre-change distribution fθ. We present asymptotically optimal procedures for one-parameter exponential families. Next, we develop a general theory for change-point problems when both the pre-change distribution fθ and the post-change distribution gλ in- volve unknown parameters. We also apply our approach to the special case of detecting shifts in the mean of independent normal observa- tions. 1. Introduction. Suppose there is a process that produces a sequence of independent observations X1, X2,.... Initially the process is “in control” and the true distribution of the X’s is fθ for some θ Θ. At some unknown time ν, the process goes “out of control” in the sense∈ that the distribution of Xν , Xν+1,... is gλ for some λ Λ. It is desirable to raise an alarm as soon as the process is out of control so∈ that we can take appropriate action.
    [Show full text]