├── .gitignore ├── CMakeLists.txt ├── Readme.md ├── Rscript ├── aapp_dsyn.R ├── battle_commander.R ├── capital_state.R ├── city_capital.R ├── experimentAPI.R ├── experiment_template.R ├── feature_selection.R ├── fiction_author.R ├── gbserverAPI.R ├── gngm_celf.R ├── interpret.R ├── meatpath_predicate.R ├── president_company.R ├── president_us.R ├── robustness.R ├── time_consumption.R └── top_related_rels.R ├── aapp_dsyn.csv ├── bestseller.csv ├── civil_war.csv ├── company_president.csv ├── compile.sh ├── gngm_celf.csv ├── gngm_celf.fullpath.csv ├── president.csv ├── run_server.sh ├── run_test.sh ├── src ├── gbclient │ ├── main.cpp │ └── socket_client.h ├── gbserver │ ├── edge_list.cpp │ ├── edge_list.h │ ├── edge_loader.h │ ├── graph.h │ ├── main.cpp │ ├── node_loader.h │ ├── opts.cpp │ ├── opts.h │ ├── socket_server.h │ └── type_loader.h └── parser │ ├── main.cpp │ ├── opts.cpp │ ├── opts.h │ ├── rdf_parser.cpp │ └── rdf_parser.h ├── state_capital.csv └── utils ├── command_generator.py ├── dbpedia_to_tsv.py ├── get_id_by_rel.py ├── graph_to_amie.py ├── lobbyist_to_graph.py ├── semantic_node_to_id.py ├── semmed_counter.py ├── semmed_to_graph.py └── simrank.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Readme.md -------------------------------------------------------------------------------- /Rscript/aapp_dsyn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/aapp_dsyn.R -------------------------------------------------------------------------------- /Rscript/battle_commander.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/battle_commander.R -------------------------------------------------------------------------------- /Rscript/capital_state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/capital_state.R -------------------------------------------------------------------------------- /Rscript/city_capital.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/city_capital.R -------------------------------------------------------------------------------- /Rscript/experimentAPI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/experimentAPI.R -------------------------------------------------------------------------------- /Rscript/experiment_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/experiment_template.R -------------------------------------------------------------------------------- /Rscript/feature_selection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/feature_selection.R -------------------------------------------------------------------------------- /Rscript/fiction_author.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/fiction_author.R -------------------------------------------------------------------------------- /Rscript/gbserverAPI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/gbserverAPI.R -------------------------------------------------------------------------------- /Rscript/gngm_celf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/gngm_celf.R -------------------------------------------------------------------------------- /Rscript/interpret.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/interpret.R -------------------------------------------------------------------------------- /Rscript/meatpath_predicate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/meatpath_predicate.R -------------------------------------------------------------------------------- /Rscript/president_company.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/president_company.R -------------------------------------------------------------------------------- /Rscript/president_us.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/president_us.R -------------------------------------------------------------------------------- /Rscript/robustness.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/robustness.R -------------------------------------------------------------------------------- /Rscript/time_consumption.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/time_consumption.R -------------------------------------------------------------------------------- /Rscript/top_related_rels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/Rscript/top_related_rels.R -------------------------------------------------------------------------------- /aapp_dsyn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/aapp_dsyn.csv -------------------------------------------------------------------------------- /bestseller.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/bestseller.csv -------------------------------------------------------------------------------- /civil_war.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/civil_war.csv -------------------------------------------------------------------------------- /company_president.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/company_president.csv -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/compile.sh -------------------------------------------------------------------------------- /gngm_celf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/gngm_celf.csv -------------------------------------------------------------------------------- /gngm_celf.fullpath.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/gngm_celf.fullpath.csv -------------------------------------------------------------------------------- /president.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/president.csv -------------------------------------------------------------------------------- /run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/run_server.sh -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/run_test.sh -------------------------------------------------------------------------------- /src/gbclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbclient/main.cpp -------------------------------------------------------------------------------- /src/gbclient/socket_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbclient/socket_client.h -------------------------------------------------------------------------------- /src/gbserver/edge_list.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Baoxu Shi on 6/13/15. 3 | // 4 | 5 | #include "edge_list.h" 6 | -------------------------------------------------------------------------------- /src/gbserver/edge_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/edge_list.h -------------------------------------------------------------------------------- /src/gbserver/edge_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/edge_loader.h -------------------------------------------------------------------------------- /src/gbserver/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/graph.h -------------------------------------------------------------------------------- /src/gbserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/main.cpp -------------------------------------------------------------------------------- /src/gbserver/node_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/node_loader.h -------------------------------------------------------------------------------- /src/gbserver/opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/opts.cpp -------------------------------------------------------------------------------- /src/gbserver/opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/opts.h -------------------------------------------------------------------------------- /src/gbserver/socket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/socket_server.h -------------------------------------------------------------------------------- /src/gbserver/type_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/gbserver/type_loader.h -------------------------------------------------------------------------------- /src/parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/parser/main.cpp -------------------------------------------------------------------------------- /src/parser/opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/parser/opts.cpp -------------------------------------------------------------------------------- /src/parser/opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/parser/opts.h -------------------------------------------------------------------------------- /src/parser/rdf_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/parser/rdf_parser.cpp -------------------------------------------------------------------------------- /src/parser/rdf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/src/parser/rdf_parser.h -------------------------------------------------------------------------------- /state_capital.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/state_capital.csv -------------------------------------------------------------------------------- /utils/command_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/command_generator.py -------------------------------------------------------------------------------- /utils/dbpedia_to_tsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/dbpedia_to_tsv.py -------------------------------------------------------------------------------- /utils/get_id_by_rel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/get_id_by_rel.py -------------------------------------------------------------------------------- /utils/graph_to_amie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/graph_to_amie.py -------------------------------------------------------------------------------- /utils/lobbyist_to_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/lobbyist_to_graph.py -------------------------------------------------------------------------------- /utils/semantic_node_to_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/semantic_node_to_id.py -------------------------------------------------------------------------------- /utils/semmed_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/semmed_counter.py -------------------------------------------------------------------------------- /utils/semmed_to_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/semmed_to_graph.py -------------------------------------------------------------------------------- /utils/simrank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nddsg/KGMiner/HEAD/utils/simrank.cpp --------------------------------------------------------------------------------