+ All Categories
Home > Documents > Data Matching Research at the Australian National...

Data Matching Research at the Australian National...

Date post: 17-Mar-2021
Category:
Upload: others
View: 4 times
Download: 0 times
Share this document with a friend
46
Data Matching Research at the Australian National University Peter Christen Research School of Computer Science, ANU College of Engineering and Computer Science, The Australian National University Contact: [email protected] http://cs.anu.edu.au/people/Peter.Christen February 2014 – p. 1/46
Transcript
Page 1: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Data Matching Research atthe Australian National University

Peter Christen

Research School of Computer Science,

ANU College of Engineering and Computer Science,

The Australian National University

Contact: [email protected]

http://cs.anu.edu.au/people/Peter.Christen

February 2014 – p. 1/46

Page 2: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Outline

Background about me and the ANU

A short introduction to data matching and itschallenges

Research projects in data matching at the ANUScalable real-time entity resolution on dynamic

databases

Scalable privacy-preserving record linkage techniques

Efficient matching of historical census data across time

Conclusions and research directions

February 2014 – p. 2/46

Page 3: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Background - Short CV

Born and grew up in Basel, SwitzerlandDiploma in Computer Science, ETH Zürich in 1995

PhD in Parallel Computing, University of Basel in 1999

Moved to Canberra / ANU in 1999Postdoctoral Researcher (funded by Swiss NSF)

from 1999 to 2000

Lecturer from 2001 to 2006

Senior Lecturer from 2007 to 2012

Associate Dean (Higher Degree Research) for

Engineering and Computer Science, 2009 to 2011

Associate Professor since 2013

February 2014 – p. 3/46

Page 4: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Canberra, Australia

February 2014 – p. 4/46

Page 5: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Research at the ANU (1)

Around 17,000 students, over 2,000 PhD students(around 100 in computer science)

February 2014 – p. 5/46

Page 6: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Research at the ANU (2)

Over 1,600 academics (around 40 in computerscience, including 14 full professors)

February 2014 – p. 6/46

Page 7: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

What is data matching?

The process of matching records that representthe same entity in one or more databases(patient, customer, business name, etc.)

Also known as record linkage, entity resolution,object identification, duplicate detection, identityuncertainty, merge-purge, etc.

Major challenge is that unique entity identifiersare often not available in the databases to bematched (or if available, they are not consistent)

E.g., which of these records represent the same person?

Dr Smith, Peter 42 Miller Street 2602 O’Connor

Pete Smith 42 Miller St 2600 Canberra A.C.T.

P. Smithers 24 Mill Rd 2600 Canberra ACT

February 2014 – p. 7/46

Page 8: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

The data matching process

Comparison

Matches

Non−matches

Matches

processingData pre−

processingData pre−

Classif−ication

ClericalReview

Evaluation

Potential

Indexing /Searching

Database A Database B

February 2014 – p. 8/46

Page 9: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Applications of data matching

Remove duplicates in one data set (deduplication)

Merge new records into a larger master data set

Create patient or customer oriented statistics(for example for longitudinal studies)

Clean and enrich data for analysis and mining

Geocode matching (with reference address data)

Widespread use of data matching

Immigration, taxation, social security, census

Fraud, crime, and terrorism intelligence

Business mailing lists, exchange of customer data

Health and social science researchFebruary 2014 – p. 9/46

Page 10: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Data matching challenges

No unique entity identifiers are available(use approximate (string) comparison functions)

Real world data are dirty(typographical errors and variations, missing andout-of-date values, different coding schemes, etc.)

Scalability to very large databases(naïve comparison of all record pairs is quadratic; someform of blocking, indexing or filtering is needed)

No training data in many data matchingapplications (true match status not known)

Privacy and confidentiality(because personal information is commonly requiredfor matching)

February 2014 – p. 10/46

Page 11: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Types of data matching techniques

Deterministic matchingExact matching (if a unique identifier of high quality

is available: precise, robust, stable over time)

Examples: Social security or Medicare numbers

Rule-based matching (complex to build and maintain)

Probabilistic record linkage (Fellegi and Sunter, 69)

Use available attributes for matching (often personal

information, like names, addresses, dates of birth, etc.)

Calculate matching weights for attributes

‘Computer science’ approaches(based on machine learning, data mining, database, orinformation retrieval techniques)

February 2014 – p. 11/46

Page 12: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Advanced classification techniques

View record pair classification as a multi-dimensional binary classification problem(use attribute similarities to classify record pairsas matches or non-matches)

Many machine learning techniques can be used

Supervised: Decision trees, SVMs, neural networks,

learnable string comparisons, active learning, etc.

Un-supervised: Various clustering algorithms

Recently, collective classification techniques havebeen investigated (build graph of database and

conduct overall classification, rather than each recordpair independently)

February 2014 – p. 12/46

Page 13: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Project 1

Scalable real-time entity resolution ondynamic databases

February 2014 – p. 13/46

Page 14: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Scalable real-time entity resolutionon dynamic databases

A Linkage Project funded by the AustralianResearch Council, Veda (credit bureau), andFunnelback (web and enterprise search)

Collaborators:Dr Huizhi (Elly) Liang (Post-doc, ANU)

Ms Banda Ramadan (PhD student, ANU)

Assoc Prof Peter Strazdins (ANU)

Dr Ross Gayler (Veda)

Prof David Hawking (Funnelback and ANU)

February 2014 – p. 14/46

Page 15: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Motivation and objectives

Credit bureau requires matching in real-timeof query records to a large database of entityrecords (credit enquiries)

Improve indexing to retrieve candidate recordsfaster, therefore have more time for advancedclassification (currently proprietary rules-based)

Objectives are to develop:Novel indexing techniques that allow for real-time

matching of query records on dynamic databases

Techniques that consider temporal data aspects

Improved techniques for real-time classification of

query records (to match with database records)

February 2014 – p. 15/46

Page 16: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Dynamic similarity-aware indexing(1)

RecID Given- Double-name Metaphone

r1 tony tn

r2 cathrine k0rn

r3 tony tn

r4 kathryn k0rn

r5 tonya tn

cathrine kathryn tony tonya

cathrine

kathryn

tony

tonya

r2 r4 r1 r5

r3

RI

SIk0rnkathryn 0.7

cathrine 0.7

tonya 0.9

tony 0.9

tnBI

cathrine

kathryn

tony

tonya

RI: Record index, BI: Block index, SI: Similarity index

February 2014 – p. 16/46

Page 17: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Dynamic similarity-aware indexing(2)

RecID Given- Double-name Metaphone

r1 tony tn

r2 cathrine k0rn

r3 tony tn

r4 kathryn k0rn

r5 tonya tn

r6 cathrine k0rn

cathrine kathryn tony tonya

cathrine

kathryn

tony

tonya

r2 r4 r1 r5

r3

RI

SIk0rnkathryn 0.7

cathrine 0.7

tonya 0.9

tony 0.9

tnBI

cathrine

kathryn

tony

tonya

r6

RI: Record index, BI: Block index, SI: Similarity index

February 2014 – p. 17/46

Page 18: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Dynamic similarity-aware indexing(3)

RecID Given- Double-name Metaphone

r1 tony tn

r2 cathrine k0rn

r3 tony tn

r4 kathryn k0rn

r5 tonya tn

r6 cathrine k0rn

r7 linda lnt

cathrine kathryn tony tonya

cathrine

kathryn

tony

tonya

r2 r4 r1 r5

r3

RI

SIk0rnkathryn 0.7

cathrine 0.7

tonya 0.9

tony 0.9

tnBI

cathrine

kathryn

tony

tonya

r6

linda

r7

linda

lnt

linda

RI: Record index, BI: Block index, SI: Similarity index

February 2014 – p. 18/46

Page 19: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Dynamic similarity-aware indexing(4)

RecID Given- Double-name Metaphone

r1 tony tn

r2 cathrine k0rn

r3 tony tn

r4 kathryn k0rn

r5 tonya tn

r6 cathrine k0rn

r7 linda lnt

r8 tonia tn

cathrine kathryn tony tonya

cathrine

kathryn

tony

tonya

r2 r4 r1 r5

r3

RI

SIk0rnkathryn 0.7

cathrine 0.7

tonia 0.8

tonia 0.9

tnBI

cathrine

kathryn tony

tonya

r6

linda

r7

linda

lnt

linda

tonia

r8

tonia

tonya 0.9

tonya 0.9

tonia tony 0.8 tonya 0.9

RI: Record index, BI: Block index, SI: Similarity index

February 2014 – p. 19/46

Page 20: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Dynamic similarity-aware indexing(5)

0 500000 1000000 1500000 2000000 2500000Record Insertion Number

10-5

10-4

10-3

10-2

10-1

Inse

rtio

n Ti

me

(s)

Insertion Time for a Single RecordMaxAveMin

On North Carolina voter database (around 2.4 million records)

February 2014 – p. 20/46

Page 21: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Dynamic similarity-aware indexing(6)

0 500000 1000000 1500000 2000000 2500000Record Insertion Number

10-4

10-3

10-2

10-1

100

101

Que

ry T

ime

(s)

Query Time for a Single RecordMaxAveMin

February 2014 – p. 21/46

Page 22: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Project 2

Scalable privacy-preservingrecord linkage (PPRL)

February 2014 – p. 22/46

Page 23: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Scalable privacy-preservingrecord linkage

A Discovery Project funded by the AustralianResearch Council

Collaborators:Ms Dinusha Vatsalan (PhD student, ANU)

Assoc Prof Vassilios Verykios

(Hellenic Open University)

Mr Thilina Ranbaduge (PhD student, starting 2014)

February 2014 – p. 23/46

Page 24: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Motivation and objectives

Privacy concerns in many applications wheredata are matched between organisations

Matched data can allow analysis not possible onindividual databases(potentially revealing highly sensitive information)

Objectives are to develop:Scalable techniques to facilitate PPRL

Techniques that allow PPRL on multiple databases

Improved classification techniques for PPRL

Methods to assess matching quality and completeness

in a privacy-preserving framework

February 2014 – p. 24/46

Page 25: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Privacy and data matching: Anexample scenario (1)

February 2014 – p. 25/46

Page 26: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Privacy and data matching: Anexample scenario (2)

Preventing the outbreak of epidemics requiresmonitoring of occurrences of unusual patterns insymptoms (in real time!)

Data from many different sources will need to becollected (including travel and immigration records;doctors, emergency and hospital admissions; drugpurchases in pharmacies; animal health data; etc.)

Privacy concerns arise if such data are storedand matched at a central location

Matched sensitive patient data and confidentialdata from healthcare organisations must be keptsecure, while still allowing analysis

February 2014 – p. 26/46

Page 27: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

The PPRL process

Comparison

Matches

Non−matches

Matches

Privacy−preserving context

ClericalReview

Classif−ication

processingData pre−

processingData pre−

Evaluation

PotentialEncoded data

Indexing /Searching

Database A Database B

February 2014 – p. 27/46

Page 28: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

PPRL challenges and basic protocols

Main challenges in PPRLAllow for approximate matching of values (given real

world data are often ‘dirty’)

Have techniques that are not vulnerable to any kind of

attack, and are scalable to matching large databases

Two basic types of protocolsTwo-party protocol: Only the two database owners

who wish to link their data

Three-party protocols: Use a (trusted) third party

(linkage unit) to conduct the linkage (this party will

never see any unencoded values, but collusion is

possible)February 2014 – p. 28/46

Page 29: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Basic protocol steps

(1)

(2)(2)

(3) (3)

BobAlice

(3)(3)

(2) (2)

(1)Alice

Carol

Bob

Generally, three main communication steps

1. Exchange of which attributes to use in a linkage,

pre-processing methods, encoding functions,

parameters, secret keys, etc.

2. Exchange of the somehow encoded database records

3. Exchange of records (or selected attribute values, or

identifiers only) of records classified as matches

February 2014 – p. 29/46

Page 30: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Bloom filter based PPRLerteet

1 1111 0 0 0 0 1 0 0 0 1

pe

Alice

pe et te

1 1111 0 0 0 0 0 0000Bob

Proposed by Schnell et al. (Biomed Central, 2009)

Idea: Map q-grams into Bloom filters using hash functions

only known to database owners, send Bloom filters to

linkage unit to calculate Dice similarity

1-bits for string ‘peter’: 7, 1-bits for ‘pete’: 5, common 1-bits:

5, therefore simDice = 2×5/(7+5)= 10/12 = 0.83

February 2014 – p. 30/46

Page 31: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Two-party Bloom filter protocol (1)

Iteratively exchange certain bits from the Bloomfilters between database owners

Calculate the minimum Dice similarity from thebits exchanged, and classify record pairs asmatches, non-matches, and possible matches

Pairs classified as possible matches are taken tothe next iteration (where more bits are exchanged)

The number of bits revealed in each iteration is

calculated such that the risk of revealing more bits

for non-matches is minimised

Minimum similarity of possible matches increases as

more bits are revealed

February 2014 – p. 31/46

Page 32: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Two-party Bloom filter protocol forPPRL (2)

Iteration 2

ra1 rb11100 0 0 0 100 0 0 001 1 11 11

ra2 0 0 1 100 111 00 0 0 00 rb20 10 11

possible matchsim = [0.67, 0.89]

sim = [0.0, 0.25]non−match

ra2

ra1

Alice Bob

rb1

Iteration 1

possible match

possible match

11100 1 0 0 0

0 0 100 111 00 1 0 0 00

1100 1 0 0 001 1

rb2

00 1 1 0 111 00 0 0 00 rb30 11 00 0

0 0 11 1

sim = [0.22, 0.89]

sim = [0.0, 0.75]

sim = [0.0, 0.28]non−matchra3

Each party knows how many 1-bits are set in total in a

Bloom filter received from the other party

In iteration 1, for example, there is one unrevealed 1-bit

in ra3, and so the maximum possible Dice similarity with

rb3 is: max(sim(ra3, rb3)) = 2×1/(4+3)= 2/7 = 0.28

February 2014 – p. 32/46

Page 33: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Project 3

Efficient matching of historical censusdata across time

February 2014 – p. 33/46

Page 34: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Project 3: Efficient matching ofhistorical census data across time

Collaborators:Ms Zhichun (Sally) Fu (PhD student, ANU)

Assoc Prof Mac Boot (Australian Demographic and

Social Research Institute, ANU)

Motivation

Shift in the social sciences from small-scale studies to

using population databases

New field of ‘population informatics’ to analyse the

‘social genome’

Develop techniques to compile family trees over time

from large data collections (population reconstruction)

February 2014 – p. 34/46

Page 35: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Challenges with historical (census)data

Low literacy (recording errors and unknown exact

values), no address or occupation standards

Large percentage of a population had one of

just a few common names (‘John’ or ‘Mary’)

Households and families change over time

Immigration and emigration, birth and death

Scanning, OCR, and transcription errors

February 2014 – p. 35/46

Page 36: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Group matching using householdinformation

Conduct pair-wise matching of individual records

Calculate household similarities using Jaccard or

weighted similarities (based on pair-wise matching)

Promising results on UK Census data from 1851 to 1901

(Rawtenstall, with around 17,000 to 31,000 records)February 2014 – p. 36/46

Page 37: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Graph-matching based on householdstructure

r11r12

goodshawr13

Addresssmithsmithsmith

johnmary

FNSNID

H1 − 1851

goodshawanton

goodshaw

Age

3132

1

goodshawgoodshawgoodshaw

Addresssmithsmithsmith

FNSNIDjackr21

r22r23 toni

marie

Age394010

r13

H1

r23

r11 r12 r21 r22

H229 3031

1 −1AttrSim = 0.81AttrSim = 0.42

AttrSim = 0.56

30

H2 − 1861

One graph per household, find best matching graphs

using both record attribute and structural similarities

Edge attributes are information that does not change

over time (like age differences)February 2014 – p. 37/46

Page 38: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

To make sure everybody is awake..

February 2014 – p. 38/46

Page 39: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Conclusions and research directions

We address various challenges in data matching:real-time matching and dynamic data; temporalaspects; privacy; and population reconstruction

Challenges in data matchingImproved classification for matching personal data

Matching data from many sources

Use of cloud computing platforms for large-scale data

matching

Frameworks for data matching that allow comparative

experimental studies, and test data collections

Develop practical PPRL techniques (assessing

accuracy and completeness)February 2014 – p. 39/46

Page 40: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Recent publications (1)

Christen P and Gayler R: Adaptive temporal entity resolution on dynamicdatabases. PAKDD, Gold Coast, Australia, Springer LNCS vol. 7819, 2013.

Christen P and Vatsalan D: Flexible and extensible generation and corruption ofpersonal data. ACM CIKM, San Francisco, 2013.

Christen P: Advanced record linkage methods and privacy aspects for populationreconstruction. Workshop on Population Reconstruction, Amsterdam, 2014.

Fisher J, Wang Q, Wong P and Christen P: Data cleaning and matching ofinstitutions in bibliographic databases. AusDM, Canberra, CRPIT vol. 146, 2013.

Fu Z, Zhou J, Christen P and Boot M: Multiple instance learning for group recordlinkage. PAKDD, Kuala Lumpur, Malaysia, Springer LNCS vol. 7301, 2012.

Fu Z, Boot M, Christen P and Zhou J: Automatic record linkage of individuals andhouseholds in historical census data. International Journal of Humanities andArts Computing, 2014.

Fu Z, Christen P and Zhou J: A graph matching method for historical censushousehold linkage. PAKDD, Tainan, Taiwan, 2014.

February 2014 – p. 40/46

Page 41: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Recent publications (2)

Li S, Liang H and Ramadan B: Two stage similarity-aware indexing forlarge-scale real-time entity resolution. AusDM, Canberra, CRPIT vol. 146, 2013.

Liang H, Wang Y, Christen P and Gayler R: Noise-tolerant approximate blockingfor dynamic real-time entity resolution. PAKDD, Tainan, Taiwan, 2014.

Ramadan B, Christen P, Liang H, Gayler R, and Hawking D: Dynamicsimilarity-aware inverted indexing for real-time entity resolution. PAKDDWorkshops (DMApps), Gold Coast, Australia, Springer LNCS vol. 7867, 2013.

Tran KN, Vatsalan D and Christen P: GeCo: an online personal data generatorand corruptor. ACM CIKM, San Francisco, 2013.

Vatsalan D and Christen P: Sorted nearest neighborhood clustering for efficientprivate blocking. PAKDD, Gold Coast, Australia, Springer LNCS vol. 7819, 2013.

Vatsalan D, Christen P and Verykios VS: A taxonomy of privacy-preservingrecord linkage techniques. Journal of Information Systems, 2013.

Vatsalan D, Christen P and Verykios VS: Efficient two-party private-blocking basedon sorted nearest neighborhood clustering. ACM CIKM, San Francisco, 2013.

February 2014 – p. 41/46

Page 42: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Advertisement: Book ‘Data Matching’

The book is very well organized and

exceptionally well written. Because

of the depth, amount, and quality of

the material that is covered, I would

expect this book to be one of the

standard references in future years.

William E. Winkler, U.S. Bureau of

the Census.

February 2014 – p. 42/46

Page 43: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Collective classification example

Dave White

Don White

Susan Grey

John Black

Paper 2

Paper 1

Paper 3

?

Joe Brown

?

Paper 4

Liz Pink

Paper 6

Paper 5

Intel

CMU

MIT

w1=?

w2=?w4=?

w3=?

(A1, Dave White, Intel) (P1, John Black / Don White)(A2, Don White, CMU) (P2, Sue Grey / D. White)(A3, Susan Grey, MIT) (P3, Dave White)(A4, John Black, MIT) (P4, Don White / Joe Brown)(A5, Joe Brown, unknown) (P5, Joe Brown / Liz Pink)(A6, Liz Pink, unknown) (P6, Liz Pink / D. White)

Adapted from Kalashnikov and Mehrotra, ACM TODS, 31(2), 2006

February 2014 – p. 43/46

Page 44: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

A definition of PPRL

Assume O1 · · · Od are the d owners of theirrespective databases D1 · · · Dd

They wish to determine which of their records r i1

∈ D1, r j2∈ D2, · · · , and r kd ∈ Dd, match according

to a decision model C(ri1, r j

2, · · · , r kd) that classifies

pairs (or groups) of records into one of the twoclasses M of matches, and U of non-matches

O1 · · · Od do not wish to reveal their actualrecords r i

1· · · r kd with any other party

(they are, however, prepared to disclose to each other, or

to an external party, the outcomes of the matching process

— certain attribute values of record pairs in class M —to allow further analysis)

February 2014 – p. 44/46

Page 45: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

A taxonomy for PPRL

PPRL

PracticalLinkageaspects

Number

Aversary

Privacy

Data sets

of parties

model Comparison

Indexing

Privacy Evaluation aspects

Applicationarea

Implementation

Taxonomy

Classification

Scalability

Linkage quality

Privacyvulnerabilities

Scalability

Privacy

analysisTheoretical

Linkage quality

techniques

techniques

February 2014 – p. 45/46

Page 46: Data Matching Research at the Australian National Universityusers.cecs.anu.edu.au/~christen/publications/christen... · 2014. 3. 1. · Real world data are dirty (typographical errors

Secure multi-party computation

Compute a function across several parties, suchthat no party learns the information from the otherparties, but all receive the final results[Yao 1982; Goldreich 1998/2002]

Simple example: Secure summation s =

∑ix i.

Step 1: Z+x1= 1054

Step 4: s = 1169−Z = 170

Party 1

Party 2

Party 3

x1=55

x3=42

x2=73

Step 0:Z=999

Step 2: (Z+x1)+x2 = 1127

Step 3: ((Z+x1)+x2)+x3=1169

February 2014 – p. 46/46


Recommended