Skip to content

Commit 14e3fca

Browse files
author
w.jurasz
committed
whole code
0 parents  commit 14e3fca

92 files changed

Lines changed: 22360779 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
*.pyc
2+
.DS_Store
3+
target
4+
bin
5+
build
6+
.gradle
7+
*.iml
8+
*.ipr
9+
*.iws
10+
*.log
11+
.classpath
12+
.project
13+
.settings
14+
.idea
15+
venv/
16+
emb/
17+
*.lprof
18+
### C template
19+
# Prerequisites
20+
*.d
21+
22+
# Object files
23+
*.o
24+
*.ko
25+
*.obj
26+
*.elf
27+
28+
# Linker output
29+
*.ilk
30+
*.map
31+
*.exp
32+
33+
# Precompiled Headers
34+
*.gch
35+
*.pch
36+
37+
# Libraries
38+
*.lib
39+
*.a
40+
*.la
41+
*.lo
42+
43+
# Shared objects (inc. Windows DLLs)
44+
*.dll
45+
*.so
46+
*.so.*
47+
*.dylib
48+
49+
# Executables
50+
*.exe
51+
*.out
52+
*.app
53+
*.i*86
54+
*.x86_64
55+
*.hex
56+
57+
# Debug files
58+
*.dSYM/
59+
*.su
60+
*.idb
61+
*.pdb
62+
63+
# Kernel Module Compile Results
64+
*.mod*
65+
*.cmd
66+
.tmp_versions/
67+
modules.order
68+
Module.symvers
69+
Mkfile.old
70+
dkms.conf
71+
### CMake template
72+
CMakeCache.txt
73+
CMakeFiles
74+
CMakeScripts
75+
Testing
76+
Makefile
77+
cmake_install.cmake
78+
install_manifest.txt
79+
compile_commands.json
80+
CTestTestfile.cmake
81+
### C++ template
82+
# Prerequisites
83+
*.d
84+
85+
# Compiled Object files
86+
*.slo
87+
*.lo
88+
*.o
89+
*.obj
90+
91+
# Precompiled Headers
92+
*.gch
93+
*.pch
94+
95+
# Compiled Dynamic libraries
96+
*.so
97+
*.dylib
98+
*.dll
99+
100+
# Fortran module files
101+
*.mod
102+
*.smod
103+
104+
# Compiled Static libraries
105+
*.lai
106+
*.la
107+
*.a
108+
*.lib
109+
110+
# Executables
111+
*.exe
112+
*.out
113+
*.app
114+
115+
cmake-build-debug
116+
### JupyterNotebooks template
117+
# gitignore template for Jupyter Notebooks
118+
# website: http://jupyter.org/
119+
120+
.ipynb_checkpoints
121+
*/.ipynb_checkpoints/*
122+
123+
# Remove previous ipynb_checkpoints
124+
# git rm -r .ipynb_checkpoints/
125+
#
126+
127+
128+
notebooks/data
129+
notebooks/data_exp
130+
notebooks/*.pdf
131+
src3/*.pdf
132+
*.pkl
133+
*.png

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Aditya Grover
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Multi_Source_Random_Walks.pdf

401 KB
Binary file not shown.

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Multi Source Random Walk Graph Traversal.
2+
3+
This repository contains the code for ongoing research aiming to improve preformance
4+
of Random Walk procedure for Graph Embeddings.
5+
6+
The basis for this research are following papers:
7+
8+
node2vec: Scalable Feature Learning for Networks
9+
Grover, Aditya and Leskovec, Jure
10+
https://arxiv.org/abs/1607.00653
11+
12+
and
13+
14+
The More the Merrier: Efficient Multi-Source Graph Traversal
15+
Then, Kaufmann, Chirigati, Hoang-Vu†, Pham, Kemper, Neumann, Vo
16+
http://www.vldb.org/pvldb/vol8/p449-then.pdf
17+
18+
## Code Description
19+
Will be published after research is finalized.
20+

0 commit comments

Comments
 (0)