From 937de81e837d91d097e90017a890f588ec55c6df Mon Sep 17 00:00:00 2001 From: Claudio Atzori Date: Tue, 10 Jan 2023 12:21:59 +0100 Subject: [PATCH] make the phases explicit in the text --- docs/data-provision/deduplication/deduplication.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/data-provision/deduplication/deduplication.md b/docs/data-provision/deduplication/deduplication.md index 67c103b..d4fb7d6 100644 --- a/docs/data-provision/deduplication/deduplication.md +++ b/docs/data-provision/deduplication/deduplication.md @@ -4,18 +4,23 @@ Metadata records about the same scholarly work can be collected from different p ## Methodology overview -The deduplication process can be divided into three different phases: +The deduplication process can be divided into five different phases: +* Collection import * Candidate identification (clustering) * Duplicates identification (pair-wise comparisons) * Duplicates grouping (transitive closure) * Relation redistribution

- Deduplication Workflow + Deduplication Workflow

[//]: # (Link to the image: https://docs.google.com/drawings/d/1lLLSU3wsWighmxGQMNMZbgP3mg3BfDVAGVLwt4_OFA8/edit?usp=sharing) +### Collection import + +The nodes in the graph represent entities of different types. This phase is responsible for identifying all the nodes with a given type and make them available to the subsequent phases representing them in the deduplication record model. + ### Candidate identification (clustering) Clustering is a common heuristics used to overcome the N x N complexity required to match all pairs of objects to identify the equivalent ones. The challenge is to identify a [clustering function](./clustering-functions) that maximizes the chance of comparing only records that may lead to a match, while minimizing the number of records that will not be matched while being equivalent. Since the equivalence function is to some level tolerant to minimal errors (e.g. switching of characters in the title, or minimal difference in letters), we need this function to be not too precise (e.g. a hash of the title), but also not too flexible (e.g. random ngrams of the title). On the other hand, reality tells us that in some cases equality of two records can only be determined by their PIDs (e.g. DOI) as the metadata properties are very different across different versions and no [clustering function](./clustering-functions) will ever bring them into the same cluster.