├── .gitignore ├── LICENSE ├── README.md ├── documents ├── complex_networks_2017_poster.pdf └── mlg_2018_poster.pdf ├── experiments ├── CentralityScoreComputer.py ├── ConceptDrift.ipynb ├── PredictTennisPlayer.ipynb └── ScheduleScoreUpdater.ipynb ├── python ├── __init__.py ├── centrality_utils │ ├── __init__.py │ ├── base_computer.py │ ├── decayed_indegree_computer.py │ ├── harmonic_centrality_computer.py │ ├── static_harmonic_centrality_computer.py │ ├── static_indegree_computer.py │ ├── static_negative_beta_measure_computer.py │ ├── static_pagerank_computer.py │ ├── temporal_katz_computer.py │ ├── temporal_pagerank.py │ └── weight_funtions.py ├── concept_drift │ ├── __init__.py │ ├── experiment_utils.py │ └── graph_generator.py ├── data_processing │ ├── __init__.py │ ├── player_labeling.py │ └── tennis_player_processing.py ├── evaluation_utils │ ├── __init__.py │ ├── binary_eval_computer.py │ ├── correlation_computer.py │ ├── eval_utils.py │ └── ndcg_computer.py ├── experiment_utils │ ├── __init__.py │ ├── player_prediction_performance.py │ └── player_prediction_visualization.py └── simulator_utils │ ├── __init__.py │ ├── graph_extractor.py │ └── graph_simulator.py └── scripts ├── calculate_centrality_scores.sh ├── download_data.sh ├── run_all.sh └── run_experiments.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/README.md -------------------------------------------------------------------------------- /documents/complex_networks_2017_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/documents/complex_networks_2017_poster.pdf -------------------------------------------------------------------------------- /documents/mlg_2018_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/documents/mlg_2018_poster.pdf -------------------------------------------------------------------------------- /experiments/CentralityScoreComputer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/experiments/CentralityScoreComputer.py -------------------------------------------------------------------------------- /experiments/ConceptDrift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/experiments/ConceptDrift.ipynb -------------------------------------------------------------------------------- /experiments/PredictTennisPlayer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/experiments/PredictTennisPlayer.ipynb -------------------------------------------------------------------------------- /experiments/ScheduleScoreUpdater.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/experiments/ScheduleScoreUpdater.ipynb -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/centrality_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/centrality_utils/base_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/base_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/decayed_indegree_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/decayed_indegree_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/harmonic_centrality_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/harmonic_centrality_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/static_harmonic_centrality_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/static_harmonic_centrality_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/static_indegree_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/static_indegree_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/static_negative_beta_measure_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/static_negative_beta_measure_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/static_pagerank_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/static_pagerank_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/temporal_katz_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/temporal_katz_computer.py -------------------------------------------------------------------------------- /python/centrality_utils/temporal_pagerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/temporal_pagerank.py -------------------------------------------------------------------------------- /python/centrality_utils/weight_funtions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/centrality_utils/weight_funtions.py -------------------------------------------------------------------------------- /python/concept_drift/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python/concept_drift/experiment_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/concept_drift/experiment_utils.py -------------------------------------------------------------------------------- /python/concept_drift/graph_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/concept_drift/graph_generator.py -------------------------------------------------------------------------------- /python/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/data_processing/player_labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/data_processing/player_labeling.py -------------------------------------------------------------------------------- /python/data_processing/tennis_player_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/data_processing/tennis_player_processing.py -------------------------------------------------------------------------------- /python/evaluation_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/evaluation_utils/binary_eval_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/evaluation_utils/binary_eval_computer.py -------------------------------------------------------------------------------- /python/evaluation_utils/correlation_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/evaluation_utils/correlation_computer.py -------------------------------------------------------------------------------- /python/evaluation_utils/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/evaluation_utils/eval_utils.py -------------------------------------------------------------------------------- /python/evaluation_utils/ndcg_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/evaluation_utils/ndcg_computer.py -------------------------------------------------------------------------------- /python/experiment_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/experiment_utils/player_prediction_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/experiment_utils/player_prediction_performance.py -------------------------------------------------------------------------------- /python/experiment_utils/player_prediction_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/experiment_utils/player_prediction_visualization.py -------------------------------------------------------------------------------- /python/simulator_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/simulator_utils/graph_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/simulator_utils/graph_extractor.py -------------------------------------------------------------------------------- /python/simulator_utils/graph_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/python/simulator_utils/graph_simulator.py -------------------------------------------------------------------------------- /scripts/calculate_centrality_scores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/scripts/calculate_centrality_scores.sh -------------------------------------------------------------------------------- /scripts/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/scripts/download_data.sh -------------------------------------------------------------------------------- /scripts/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/scripts/run_all.sh -------------------------------------------------------------------------------- /scripts/run_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferencberes/online-centrality/HEAD/scripts/run_experiments.sh --------------------------------------------------------------------------------