Skip to content

isabella232/entity-resolution

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

entity resolution icon

Entity-Resolution-Demonstration Graph Example

Description: Entity Resolution, Record Linkage and Similarity wise recommendation with Neo4j

Nodes 1267 Relationships 1939

model
Figure 1. Model
example
Figure 2. Example
Example Query:
MATCH (u:User {state: $state} )-[:WATCHED]->(m)-[:HAS]->(g:Genre)

RETURN g.name as genre, count(g) as freq
ORDER BY freq DESC

Setup

This is for Neo4j version: 4.4

Required plugins: apoc, graph-data-science

Rendered guide available via: :play https://guides.neo4j.com/sandbox/entity-resolution

Load graph data via the following:

Data files: true

Import flat files (csv, json, etc) using Cypher’s LOAD CSV, APOC library, or other methods.

  • Drop the file into the Files section of a project in Neo4j Desktop. Then choose the option to Create new DBMS from dump option from the file options.

  • Use the neo4j-admin tool to load data from the command line with the command below.

bin/neo4j-admin load --from data/entity-resolution-44.dump [--database "database"]

Feedback

Feel free to submit issues or pull requests for improvement on this repository.

About

No description, website, or topics provided.

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 32.7%
  • Java 22.5%
  • C# 19.7%
  • JavaScript 14.1%
  • Python 11.0%