From 62006cf429018ed3fa17eeae03360c462bd522a0 Mon Sep 17 00:00:00 2001 From: Chintan Desai Date: Sun, 11 Jun 2023 01:00:09 +0530 Subject: [PATCH] Update entity-resolution.adoc --- documentation/entity-resolution.adoc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/documentation/entity-resolution.adoc b/documentation/entity-resolution.adoc index 75f64eb..5b530a9 100644 --- a/documentation/entity-resolution.adoc +++ b/documentation/entity-resolution.adoc @@ -172,12 +172,11 @@ ORDER BY freq DESC These are users who have same/similar names but different (redundant) profiles due to typos or abbreviations used for some instances. -We are using the Jaro Winkler Distance algorithm from the Neo4j APOC library. +We are using the Sorensen Dice Similarity algorithm from the Neo4j APOC library. References -* https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance[Jaro–Winkler distance^] -* https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.jaroWinklerDistance/[apoc.text.jaroWinklerDistance^] +* https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.sorensenDiceSimilarity[apoc.text.sorensenDiceSimilarity^] [source,cypher] ----