-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathREADME.txt
58 lines (42 loc) · 2.16 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
This is the GraMi Source Release README
Last updated for GraMi on 11 March, 2014
-----------------------------------------------------------------------------
OVERVIEW:
GraMi is a novel framework for frequent subgraph mining in a single large
graph, GraMi outperforms existing techniques by 2 orders of magnitudes. GraMi
supports finding frequent subgraphs as well as frequent patterns, Compared to
subgraphs, patterns offer a more powerful version of matching that captures
transitive interactions between graph nodes (like friend of a friend) which are
very common in modern applications. Also, GraMi supports user-defined
structural and semantic constraints over the results, as well as approximate
results.
For more details, check our paper:
Mohammed Elseidy, Ehab Abdelhamid, Spiros Skiadopoulos, and Panos Kalnis.
GRAMI: Frequent Subgraph and Pattern Mining in a Single Large Graph. PVLDB,
7(7):517-528, 2014.
CONTENTS:
README ................... This file
LICENSE.txt .............. License file (Open Source)
build .................... build GraMi java binary files
grami .................... script to run GraMi
Datasets/ ................ Example graphs
GRAMI_*/ ................. Directory containing GraMi sources
REQUIREMENTS:
Java JRE v1.6.0 or later
INSTALLATION:
- Uncompress Grami using any compression tool
- Build Java binaries using the "build" script file
- Run GraMi using "grami" script
EXAMPLES:
Run any of the following examples, results will be on "Output.txt". First line shows elapsed time in seconds. Second line has the number of frequent subgraphs, then frequent subgraphs are listed in the subsequent lines.
1- Show GraMi breif help:
./grami -h
2- Find frequent subgraphs in the "mico" undirected graph, with minimum
frequency = 14000:
./grami -f mico.lg -s 14000 -t 0 -p 0
3- Find frequent subgraphs in the "mico" undirected graph, with minimum
frequency = 9340 and approximation:
./grami -f mico.lg -s 9340 -t 0 -p 0 -approxA 0.0002 -approxB=0
4- Find frequent patterns in the "citeseer" directed graph, with minimum
frequency = 160 and maximum distance bound (edge weight) = 200:
./grami -f citeseer.lg -s 160 -t 1 -p 1 -d 200