├── .gitignore ├── README.md ├── data ├── .gitignore ├── README.md ├── dbpedia.zip ├── label_qualifier_1.txt ├── label_qualifier_1_labels.txt ├── nell.zip ├── repeated.txt ├── repeated_labels.txt ├── test.txt ├── test_labels.txt ├── tiny.txt ├── tiny1.txt ├── tiny1_labels.txt └── tiny_labels.txt ├── license.txt ├── output └── README.md ├── src ├── .gitignore ├── anomaly_detector.py ├── correct_assertion.py ├── evaluator.py ├── graph.py ├── main.py ├── model.py ├── rule.py └── searcher.py └── test ├── .gitignore ├── test_evaluator.py ├── test_graph.py ├── test_model.py ├── test_rule.py ├── test_searcher.py └── tester.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | *.pickle 2 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/README.md -------------------------------------------------------------------------------- /data/dbpedia.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/dbpedia.zip -------------------------------------------------------------------------------- /data/label_qualifier_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/label_qualifier_1.txt -------------------------------------------------------------------------------- /data/label_qualifier_1_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/label_qualifier_1_labels.txt -------------------------------------------------------------------------------- /data/nell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/nell.zip -------------------------------------------------------------------------------- /data/repeated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/repeated.txt -------------------------------------------------------------------------------- /data/repeated_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/repeated_labels.txt -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/test.txt -------------------------------------------------------------------------------- /data/test_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/test_labels.txt -------------------------------------------------------------------------------- /data/tiny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/tiny.txt -------------------------------------------------------------------------------- /data/tiny1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/tiny1.txt -------------------------------------------------------------------------------- /data/tiny1_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/tiny1_labels.txt -------------------------------------------------------------------------------- /data/tiny_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/data/tiny_labels.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/license.txt -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/output/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pickle 3 | -------------------------------------------------------------------------------- /src/anomaly_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/anomaly_detector.py -------------------------------------------------------------------------------- /src/correct_assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/correct_assertion.py -------------------------------------------------------------------------------- /src/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/evaluator.py -------------------------------------------------------------------------------- /src/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/graph.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/model.py -------------------------------------------------------------------------------- /src/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/rule.py -------------------------------------------------------------------------------- /src/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/src/searcher.py -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /test/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/test/test_evaluator.py -------------------------------------------------------------------------------- /test/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/test/test_graph.py -------------------------------------------------------------------------------- /test/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/test/test_model.py -------------------------------------------------------------------------------- /test/test_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/test/test_rule.py -------------------------------------------------------------------------------- /test/test_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/test/test_searcher.py -------------------------------------------------------------------------------- /test/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GemsLab/KGist/HEAD/test/tester.py --------------------------------------------------------------------------------