├── .gitattributes ├── LICENSE ├── PMIA.py ├── Readme.md ├── _1_extract_active_network.py ├── _2_diffusion_greedy.py ├── _2_train.py ├── _3_extract_bernouli_and_time.py ├── _3_extract_weighted_cascade.py ├── _3_rank_nodes.py ├── _4_reform_cascades.py ├── _5_call_netrate.m ├── _6_run_pmia.py ├── _7_evaluate.py ├── _8_plot_results.R └── runIAC.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/LICENSE -------------------------------------------------------------------------------- /PMIA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/PMIA.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/Readme.md -------------------------------------------------------------------------------- /_1_extract_active_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_1_extract_active_network.py -------------------------------------------------------------------------------- /_2_diffusion_greedy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_2_diffusion_greedy.py -------------------------------------------------------------------------------- /_2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_2_train.py -------------------------------------------------------------------------------- /_3_extract_bernouli_and_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_3_extract_bernouli_and_time.py -------------------------------------------------------------------------------- /_3_extract_weighted_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_3_extract_weighted_cascade.py -------------------------------------------------------------------------------- /_3_rank_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_3_rank_nodes.py -------------------------------------------------------------------------------- /_4_reform_cascades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_4_reform_cascades.py -------------------------------------------------------------------------------- /_5_call_netrate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_5_call_netrate.m -------------------------------------------------------------------------------- /_6_run_pmia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_6_run_pmia.py -------------------------------------------------------------------------------- /_7_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_7_evaluate.py -------------------------------------------------------------------------------- /_8_plot_results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/_8_plot_results.R -------------------------------------------------------------------------------- /runIAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopanag/DiffuGreedy-Influence-Maximization/HEAD/runIAC.py --------------------------------------------------------------------------------