├── .gitignore ├── LICENSE ├── README.md ├── article ├── before_after.png └── img │ ├── datasets.dol_deets.png │ ├── datasets.dol_head.png │ ├── datasets.poi_deets.png │ ├── datasets.poi_head.png │ ├── datasets.ppp_deets.png │ ├── datasets.ppp_head.png │ ├── entity.stats.png │ ├── github.png │ ├── graphs.plot.ent_rec.png │ ├── graphs.plot.ent_rel.png │ ├── neo4j_bloom.png │ ├── neo4j_desktop.png │ ├── schema.1.png │ ├── vegas.1.png │ ├── vegas.2.png │ ├── vegas.3.png │ └── vegas.4.png ├── examples ├── big_vegas.1.html ├── big_vegas.2.html ├── datasets.ipynb ├── graph.ipynb └── impact.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/README.md -------------------------------------------------------------------------------- /article/before_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/before_after.png -------------------------------------------------------------------------------- /article/img/datasets.dol_deets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/datasets.dol_deets.png -------------------------------------------------------------------------------- /article/img/datasets.dol_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/datasets.dol_head.png -------------------------------------------------------------------------------- /article/img/datasets.poi_deets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/datasets.poi_deets.png -------------------------------------------------------------------------------- /article/img/datasets.poi_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/datasets.poi_head.png -------------------------------------------------------------------------------- /article/img/datasets.ppp_deets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/datasets.ppp_deets.png -------------------------------------------------------------------------------- /article/img/datasets.ppp_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/datasets.ppp_head.png -------------------------------------------------------------------------------- /article/img/entity.stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/entity.stats.png -------------------------------------------------------------------------------- /article/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/github.png -------------------------------------------------------------------------------- /article/img/graphs.plot.ent_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/graphs.plot.ent_rec.png -------------------------------------------------------------------------------- /article/img/graphs.plot.ent_rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/graphs.plot.ent_rel.png -------------------------------------------------------------------------------- /article/img/neo4j_bloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/neo4j_bloom.png -------------------------------------------------------------------------------- /article/img/neo4j_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/neo4j_desktop.png -------------------------------------------------------------------------------- /article/img/schema.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/schema.1.png -------------------------------------------------------------------------------- /article/img/vegas.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/vegas.1.png -------------------------------------------------------------------------------- /article/img/vegas.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/vegas.2.png -------------------------------------------------------------------------------- /article/img/vegas.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/vegas.3.png -------------------------------------------------------------------------------- /article/img/vegas.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/article/img/vegas.4.png -------------------------------------------------------------------------------- /examples/big_vegas.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/examples/big_vegas.1.html -------------------------------------------------------------------------------- /examples/big_vegas.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/examples/big_vegas.2.html -------------------------------------------------------------------------------- /examples/datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/examples/datasets.ipynb -------------------------------------------------------------------------------- /examples/graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/examples/graph.ipynb -------------------------------------------------------------------------------- /examples/impact.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/examples/impact.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerwenAI/ERKG/HEAD/requirements.txt --------------------------------------------------------------------------------