Skip to content

ronghuali/qpcommunity

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Source code for QPT mining, MQPCore and MQPClique mining

This repository contains a reference implementation of algorithms for Quasi-Periodic Communities mining in Temporal Network, including algorithms for QPT mining, MQPCore and MQPClique mining.

Environment Setup

All algorithms are implemented with C++11. You may use Git to clone the repository from GitHub and enter the main folder manually using the following command:

git clone git@github.com:bruce1114/qpcommunity.git
cd qpcommunity

QPT mining

For QPT mining, you may complile "test_weds.cpp" first and run it with any datasets in "smalldatasets/smallsequences":

g++ test_weds.cpp -o test_weds -std=c++11
./test_weds 
seq_100 4 5 \*dataset name, sigma, epsilon (%)*\
build oracle time: 20
total time: 27 
total result: 1767

Process above enables the DAG oracle based method. To switch to the basic method you may "#define candidate" rather than "#define oracle" at the top of "test_weds.cpp".

MQPCore and MQPClique mining

For MQPCore mining (and MQPClique mining), you may complile "main.cpp" first and run it with any datasets in "smalldatasets/smallgraphs":

g++ main.cpp -o main -std=c++11
./main test5.csv 3 3 10 2 \* program, dataset, k, sigma, epsilon (%). 2 indicates that MQPCL-E(+) is invoked *\
temporal graph size:
total node: 7
total edge in de-temporal graph: 12
total temporal edge: 46
total time: 0
total result: 5
all pcliques:
1 20 40 # 2 3 5
1 20 40 # 3 4 5 6
10 20 30 # 3 5 6
20 30 40 # 2 3 5
20 30 40 # 3 5 6

For the 5-th parameter: 1-MQPCL-B(+), 2-MQPCL-E(+), 3-MQPCO-B(+), 4-MQPCO-E(+). Process above enables the DAG oracle based method. To switch to the basic method you may "#define candidate" rather than "#define oracle" at the top of "main.cpp".

About

source code of "Mining Quasi Periodic Communities in Temporal Network"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 89.5%
  • TeX 10.5%