FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
memgraph/src/mage/cpp/node2vec_module/node2vec_module.cpp at master · memgraph/memgraph · GitHub
memgraph
/
memgraph
Public
Notifications
You must be signed in to change notification settings
Fork
283
Star
4.6k
Code
Issues
680
Pull requests
131
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
memgraph
/
src
/
mage
/
cpp
/
node2vec_module
/
node2vec_module.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
324 lines (287 loc) · 13.3 KB
Breadcrumbs
memgraph
/
src
/
mage
/
cpp
/
node2vec_module
/
node2vec_module.cpp
Copy path
File metadata and controls
324 lines (287 loc) · 13.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
//
Copyright 2026 Memgraph Ltd.
//
//
Use of this software is governed by the Business Source License
//
included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
//
License, and you may not use this file except in compliance with the Business Source License.
//
//
As of the Change Date specified in that file, in accordance with
//
the Business Source License, use of this software will be governed
//
by the Apache License, Version 2.0, included in the file
//
licenses/APL.txt.
//
//
Batch node2vec query module. Computes node embeddings by sampling biased
//
second-order random walks and training a Word2Vec model over them.
#
include
<
mgp.hpp
>
#
include
<
algorithm
>
#
include
<
string
>
#
include
<
unordered_map
>
#
include
<
vector
>
#
include
<
node2vec/word2vec.hpp
>
#
include
"
algorithm/second_order_random_walk.hpp
"
namespace
{
constexpr
const
char
*
kProcGetEmbeddings
=
"
get_embeddings
"
;
constexpr
const
char
*
kProcSetEmbeddings
=
"
set_embeddings
"
;
constexpr
const
char
*
kProcHelp
=
"
help
"
;
constexpr
const
char
*
kResultNodes
=
"
nodes
"
;
constexpr
const
char
*
kResultEmbeddings
=
"
embeddings
"
;
constexpr
const
char
*
kResultName
=
"
name
"
;
constexpr
const
char
*
kResultValue
=
"
value
"
;
constexpr
const
char
*
kEmbeddingProperty
=
"
embedding
"
;
struct
Params
{
bool
is_directed =
false
;
double
p =
2.0
;
double
q =
0.5
;
int64_t
num_walks =
4
;
int64_t
walk_length =
5
;
int64_t
vector_size =
100
;
double
alpha =
0.025
;
int64_t
window =
5
;
int64_t
min_count =
1
;
int64_t
seed =
1
;
int64_t
workers =
1
;
double
min_alpha =
0.0001
;
int64_t
sg =
1
;
int64_t
hs =
0
;
int64_t
negative =
5
;
int64_t
epochs =
5
;
std::string edge_weight_property =
"
weight
"
;
};
Params
ParseParams
(
const
std::vector<mgp::Value> &args) {
Params prm;
prm.
is_directed
= args[
0
].
ValueBool
();
prm.
p
= args[
1
].
ValueNumeric
();
prm.
q
= args[
2
].
ValueNumeric
();
prm.
num_walks
= args[
3
].
ValueInt
();
prm.
walk_length
= args[
4
].
ValueInt
();
prm.
vector_size
= args[
5
].
ValueInt
();
prm.
alpha
= args[
6
].
ValueNumeric
();
prm.
window
= args[
7
].
ValueInt
();
prm.
min_count
= args[
8
].
ValueInt
();
prm.
seed
= args[
9
].
ValueInt
();
prm.
workers
= args[
10
].
ValueInt
();
prm.
min_alpha
= args[
11
].
ValueNumeric
();
prm.
sg
= args[
12
].
ValueInt
();
prm.
hs
= args[
13
].
ValueInt
();
prm.
negative
= args[
14
].
ValueInt
();
prm.
epochs
= args[
15
].
ValueInt
();
prm.
edge_weight_property
=
std::string
(args[
16
].
ValueString
());
return
prm;
}
//
Builds the weighted node2vec graph from the Memgraph graph view.
node2vec_alg::N2vGraph
BuildGraph
(
const
mgp::Graph &graph,
const
Params &prm) {
node2vec_alg::N2vGraph
n2v
(prm.
is_directed
);
for
(
const
auto
node : graph.
Nodes
()) {
graph.
CheckMustAbort
();
const
int64_t
from = node.
Id
().
AsInt
();
for
(
const
auto
rel : node.
OutRelationships
()) {
const
int64_t
to = rel.
To
().
Id
().
AsInt
();
double
weight =
1.0
;
auto
wval = rel.
GetProperty
(prm.
edge_weight_property
);
if
(wval.
IsNumeric
()) weight = wval.
ValueNumeric
();
n2v.
AddEdge
(from, to, weight);
}
}
n2v.
Build
();
return
n2v;
}
std::unordered_map<
int64_t
, std::vector<
float
>>
ComputeEmbeddings
(node2vec_alg::N2vGraph &n2v,
const
Params &prm) {
node2vec_alg::SecondOrderRandomWalk
walk
(prm.
p
,
prm.
q
,
static_cast
<
int
>(prm.
num_walks
),
static_cast
<
int
>(prm.
walk_length
),
static_cast
<
uint64_t
>(prm.
seed
));
auto
walks = walk.
SampleNodeWalks
(n2v);
node2vec_alg::Word2VecParams wp;
wp.
vector_size
=
static_cast
<
int
>(prm.
vector_size
);
wp.
window
=
static_cast
<
int
>(prm.
window
);
wp.
min_count
=
static_cast
<
int
>(prm.
min_count
);
wp.
workers
=
static_cast
<
int
>(prm.
workers
);
wp.
alpha
= prm.
alpha
;
wp.
min_alpha
= prm.
min_alpha
;
wp.
seed
=
static_cast
<
int
>(prm.
seed
);
wp.
epochs
=
static_cast
<
int
>(prm.
epochs
);
wp.
sg
= prm.
sg
!=
0
;
wp.
hs
= prm.
hs
!=
0
;
wp.
negative
=
static_cast
<
int
>(prm.
negative
);
node2vec_alg::Word2Vec
model
(wp);
model.
Train
(walks);
return
model.
GetEmbeddings
();
}
mgp::List
EmbeddingToList
(
const
std::vector<
float
> &vec) {
mgp::List
inner
(vec.
size
());
for
(
const
float
x : vec) inner.
AppendExtend
(
mgp::Value
(
static_cast
<
double
>(x)));
return
inner;
}
std::vector<mgp::Value>
CollectArgs
(mgp_list *args) {
std::vector<mgp::Value> arguments;
const
size_t
n =
mgp::list_size
(args);
arguments.
reserve
(n);
for
(
size_t
i =
0
; i < n; ++i) arguments.
emplace_back
(
mgp::list_at
(args, i));
return
arguments;
}
//
Returns the embedding map's node ids in ascending order. The embeddings map
//
is an unordered_map, so this gives the two parallel output lists (nodes,
//
embeddings) a deterministic, stable row order instead of arbitrary hash order.
std::vector<
int64_t
>
SortedNodeIds
(
const
std::unordered_map<
int64_t
, std::vector<
float
>> &embeddings) {
std::vector<
int64_t
> ids;
ids.
reserve
(embeddings.
size
());
for
(
const
auto
&kv : embeddings) ids.
push_back
(kv.
first
);
std::ranges::sort
(ids);
return
ids;
}
void
GetEmbeddings
(mgp_list *args, mgp_graph *memgraph_graph, mgp_result *result, mgp_memory *memory) {
const
mgp::MemoryDispatcherGuard
guard
(memory);
try
{
auto
arguments =
CollectArgs
(args);
const
Params prm =
ParseParams
(arguments);
const
mgp::Graph
graph
(memgraph_graph);
auto
n2v =
BuildGraph
(graph, prm);
auto
embeddings =
ComputeEmbeddings
(n2v, prm);
mgp::List
nodes_list
(embeddings.
size
());
mgp::List
emb_list
(embeddings.
size
());
for
(
const
int64_t
id :
SortedNodeIds
(embeddings)) {
nodes_list.
AppendExtend
(
mgp::Value
(graph.
GetNodeById
(
mgp::Id::FromInt
(id))));
emb_list.
AppendExtend
(
mgp::Value
(
EmbeddingToList
(embeddings.
at
(id))));
}
auto
record =
mgp::RecordFactory
(result).
NewRecord
();
record.
Insert
(
kResultNodes
, nodes_list);
record.
Insert
(
kResultEmbeddings
, emb_list);
}
catch
(
const
std::exception &e) {
mgp::result_set_error_msg
(result, e.
what
());
}
}
void
SetEmbeddings
(mgp_list *args, mgp_graph *memgraph_graph, mgp_result *result, mgp_memory *memory) {
const
mgp::MemoryDispatcherGuard
guard
(memory);
try
{
auto
arguments =
CollectArgs
(args);
const
Params prm =
ParseParams
(arguments);
const
mgp::Graph
graph
(memgraph_graph);
auto
n2v =
BuildGraph
(graph, prm);
auto
embeddings =
ComputeEmbeddings
(n2v, prm);
mgp::List
nodes_list
(embeddings.
size
());
mgp::List
emb_list
(embeddings.
size
());
for
(
const
int64_t
id :
SortedNodeIds
(embeddings)) {
auto
node = graph.
GetNodeById
(
mgp::Id::FromInt
(id));
auto
emb =
EmbeddingToList
(embeddings.
at
(id));
node.
SetProperty
(
kEmbeddingProperty
,
mgp::Value
(emb));
nodes_list.
AppendExtend
(
mgp::Value
(node));
emb_list.
AppendExtend
(
mgp::Value
(
std::move
(emb)));
}
auto
record =
mgp::RecordFactory
(result).
NewRecord
();
record.
Insert
(
kResultNodes
, nodes_list);
record.
Insert
(
kResultEmbeddings
, emb_list);
}
catch
(
const
std::exception &e) {
mgp::result_set_error_msg
(result, e.
what
());
}
}
void
Help
(mgp_list *
/*
args
*/
, mgp_graph *
/*
memgraph_graph
*/
, mgp_result *result, mgp_memory *memory) {
const
mgp::MemoryDispatcherGuard
guard
(memory);
try
{
mgp::RecordFactory
factory
(result);
auto
emit_section = [&](
const
char
*title, std::initializer_list<
const
char
*> body) {
bool
first =
true
;
for
(
const
char
*line : body) {
auto
record = factory.
NewRecord
();
record.
Insert
(
kResultName
, first ? title :
"
"
);
//
NOLINTNEXTLINE(readability-suspicious-call-argument): field name then value, not swapped.
record.
Insert
(
kResultValue
, line);
first =
false
;
}
};
emit_section
(
"
Procedure 'help'
"
, {
"
Shows manual page for node2vec
"
});
emit_section
(
"
Procedure 'get_embeddings'
"
,
{
"
Function to get node embeddings. Uses Word2Vec parameters.
"
,
"
"
,
"
Parameters
"
,
"
----------
"
,
"
is_directed : bool, optional
"
,
"
If bool=True, graph is treated as directed, else not directed.
"
,
"
p : float, optional
"
,
"
Return hyperparameter for calculating transition probabilities.
"
,
"
q : float, optional
"
,
"
Inout hyperparameter for calculating transition probabilities.
"
,
"
num_walks : int, optional
"
,
"
Number of walks per node in walk sampling.
"
,
"
walk_length : int, optional
"
,
"
Length of one walk in walk sampling.
"
,
"
"
,
"
vector_size : int, optional
"
,
"
Dimensionality of the embedding vectors.
"
,
"
window : int, optional
"
,
"
Maximum distance between the current and predicted word within a sentence.
"
,
"
min_count : int, optional
"
,
"
Ignores all words with total frequency lower than this.
"
,
"
workers : int, optional
"
,
"
Use these many worker threads to train the model (=faster training with multicore machines).
"
,
"
sg : {0, 1}, optional
"
,
"
Training algorithm: 1 for skip-gram; otherwise CBOW.
"
,
"
hs : {0, 1}, optional
"
,
"
If 1, hierarchical softmax will be used for model training.
"
,
"
If 0, and `negative` is non-zero, negative sampling will be used.
"
,
"
negative : int, optional
"
,
"
If > 0, negative sampling will be used, the int for negative specifies how many
\"
noise words
\"
"
,
"
should be drawn (usually between 5-20).
"
,
"
If set to 0, no negative sampling is used.
"
,
"
alpha : float, optional
"
,
"
The initial learning rate.
"
,
"
min_alpha : float, optional
"
,
"
Learning rate will linearly drop to `min_alpha` as training progresses.
"
,
"
epochs : int, optional
"
,
"
Number of training iterations over the sampled walks.
"
,
"
seed : int, optional
"
,
"
Seed for the random number generator; makes walk sampling and training reproducible.
"
,
"
edge_weight_property : str, optional
"
,
"
Property from which to take edge weights (default
\"
weight
\"
).
"
});
emit_section
(
"
Procedure 'set_embeddings'
"
,
{
"
Same as get_embeddings, but also writes each embedding to the node's
"
,
"
'embedding' property. Accepts the same parameters as get_embeddings.
"
});
}
catch
(
const
std::exception &e) {
mgp::result_set_error_msg
(result, e.
what
());
}
}
//
Registers the node2vec parameters (identical for get_embeddings and
//
set_embeddings) as optional arguments on the given procedure.
void
AddNode2vecArgs
(mgp_proc *proc, mgp_memory *memory) {
auto
add_opt = [&](
const
char
*name, mgp_type *type, mgp_value *def) {
mgp::proc_add_opt_arg
(proc, name, type, def);
mgp::value_destroy
(def);
};
add_opt
(
"
is_directed
"
,
mgp::type_bool
(),
mgp::value_make_bool
(
0
, memory));
add_opt
(
"
p
"
,
mgp::type_number
(),
mgp::value_make_double
(
2.0
, memory));
add_opt
(
"
q
"
,
mgp::type_number
(),
mgp::value_make_double
(
0.5
, memory));
add_opt
(
"
num_walks
"
,
mgp::type_int
(),
mgp::value_make_int
(
4
, memory));
add_opt
(
"
walk_length
"
,
mgp::type_int
(),
mgp::value_make_int
(
5
, memory));
add_opt
(
"
vector_size
"
,
mgp::type_int
(),
mgp::value_make_int
(
100
, memory));
add_opt
(
"
alpha
"
,
mgp::type_number
(),
mgp::value_make_double
(
0.025
, memory));
add_opt
(
"
window
"
,
mgp::type_int
(),
mgp::value_make_int
(
5
, memory));
add_opt
(
"
min_count
"
,
mgp::type_int
(),
mgp::value_make_int
(
1
, memory));
add_opt
(
"
seed
"
,
mgp::type_int
(),
mgp::value_make_int
(
1
, memory));
add_opt
(
"
workers
"
,
mgp::type_int
(),
mgp::value_make_int
(
1
, memory));
add_opt
(
"
min_alpha
"
,
mgp::type_number
(),
mgp::value_make_double
(
0.0001
, memory));
add_opt
(
"
sg
"
,
mgp::type_int
(),
mgp::value_make_int
(
1
, memory));
add_opt
(
"
hs
"
,
mgp::type_int
(),
mgp::value_make_int
(
0
, memory));
add_opt
(
"
negative
"
,
mgp::type_int
(),
mgp::value_make_int
(
5
, memory));
add_opt
(
"
epochs
"
,
mgp::type_int
(),
mgp::value_make_int
(
5
, memory));
add_opt
(
"
edge_weight_property
"
,
mgp::type_string
(),
mgp::value_make_string
(
"
weight
"
, memory));
}
}
//
namespace
extern
"
C
"
int
mgp_init_module
(
struct
mgp_module
*
module
,
struct
mgp_memory
*memory) {
try
{
const
mgp::MemoryDispatcherGuard
guard
(memory);
auto
*get_proc =
mgp::module_add_read_procedure
(
module
,
kProcGetEmbeddings
, GetEmbeddings);
AddNode2vecArgs
(get_proc, memory);
mgp::proc_add_result
(get_proc,
kResultNodes
,
mgp::type_list
(
mgp::type_node
()));
mgp::proc_add_result
(get_proc,
kResultEmbeddings
,
mgp::type_list
(
mgp::type_list
(
mgp::type_float
())));
auto
*set_proc =
mgp::module_add_write_procedure
(
module
,
kProcSetEmbeddings
, SetEmbeddings);
AddNode2vecArgs
(set_proc, memory);
mgp::proc_add_result
(set_proc,
kResultNodes
,
mgp::type_list
(
mgp::type_node
()));
mgp::proc_add_result
(set_proc,
kResultEmbeddings
,
mgp::type_list
(
mgp::type_list
(
mgp::type_float
())));
auto
*help_proc =
mgp::module_add_read_procedure
(
module
,
kProcHelp
, Help);
mgp::proc_add_result
(help_proc,
kResultName
,
mgp::type_string
());
mgp::proc_add_result
(help_proc,
kResultValue
,
mgp::type_string
());
}
catch
(
const
std::exception &e) {
return
1
;
}
return
0
;
}
extern
"
C
"
int
mgp_shutdown_module
() {
return
0
; }
Back
|
FazBrowse Home
|
New Git URL