You may find our paper on ArXiv: https://arxiv.org/abs/1812.03398
Our paper is published in CIKM2019: https://dl.acm.org/citation.cfm?id=3357983
Please use the following BiBTeX for citing our paper:
@inproceedings{sanei2019fleet,
title={FLEET: Butterfly Estimation from a Bipartite Graph Stream},
author={Sanei-Mehri, Seyed-Vahid and Zhang, Yu and Sariy{\"u}ce, Ahmet Erdem and Tirthapura, Srikanta},
booktitle={Proceedings of the 28th ACM International Conference on Information and Knowledge Management},
pages={1201--1210},
year={2019},
organization={ACM}
}
@inproceedings{sanei2019fleet,
title={FLEET: Butterfly Estimation from a Bipartite Graph Stream},
author={Sanei-Mehri, Seyed-Vahid and Zhang, Yu and Sariy{\"u}ce, Ahmet Erdem and Tirthapura, Srikanta},
booktitle={Proceedings of the 28th ACM International Conference on Information and Knowledge Management},
pages={1201--1210},
year={2019},
organization={ACM}
}
Four butterflies in the entire graph G. Set up for processing a graph stream. To compile the code, make sure two prerequisite software already be installed on your computer:
- Make tools: we use CMake for managing the build process, version ≥ 2.8.
- C++ Compiler: g++ or visual studio C++, support C++11 standard.
Our code includes the file CMakeLists.txt for program build, please use the following steps to compile and build to generate executable program:
- In the main folder of this repo, type “cmake .” (twice).
- Run “make”, there will generate executable program named ”fleet”.
- Run “./fleet [option]” to start, where option is the algorithm name. For example, use command “./fleet Fleet1” to run the Fleet1 algorithm. Please refer main.cpp for all the algorithm names.
For sequence-based sliding window, there is a parameter called “power of γ ”, which sets the sampling probability based on the ratio of the memory budget to the window size M/W . For example, when M/W is 5%, set this parameter to be 28, as 0.9 28 ≈ 0.05. Note that this code uses a default value of 0.9 for γ.
You may find our paper on ArXiv: https://arxiv.org/pdf/1801.00338v4.pdf
This paper is published in KDD2018: https://dl.acm.org/citation.cfm?id=3220097
Please use the following BiBTeX for citing this paper:
@inproceedings{sanei2018butterfly,
title={Butterfly Counting in Bipartite Networks},
author={Sanei-Mehri, Seyed-Vahid and Sariyuce, Ahmet Erdem and Tirthapura, Srikanta},
booktitle={Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery \& Data Mining},
pages={2150--2159},
year={2018},
organization={ACM}
}