├── .gitignore ├── DBpedia_uncompressed └── requiredFiles.txt ├── Dockerfile ├── LICENSE ├── README.md ├── knowledgeGraphCreator.py └── originalConfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | DBpedia_uncompressed/*.ttl 3 | *.nt 4 | -------------------------------------------------------------------------------- /DBpedia_uncompressed/requiredFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixedEmotions/knowledge-graph/HEAD/DBpedia_uncompressed/requiredFiles.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixedEmotions/knowledge-graph/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixedEmotions/knowledge-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixedEmotions/knowledge-graph/HEAD/README.md -------------------------------------------------------------------------------- /knowledgeGraphCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixedEmotions/knowledge-graph/HEAD/knowledgeGraphCreator.py -------------------------------------------------------------------------------- /originalConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixedEmotions/knowledge-graph/HEAD/originalConfig.json --------------------------------------------------------------------------------