Skip to content

Commit 6478516

Browse files
committed
Remove extensive algo description
1 parent b525d1c commit 6478516

File tree

2 files changed

+1
-36
lines changed

2 files changed

+1
-36
lines changed

graphdatascience/procedure_surface/api/similarity/node_similarity_endpoints.py

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ def mutate(
4848
"""
4949
Runs the Node Similarity algorithm and stores the results as new relationships in the graph catalog.
5050
51-
The Node Similarity algorithm computes the similarity between nodes based on their neighborhoods,
52-
creating new relationships between each node and its most similar neighbors.
53-
5451
Parameters
5552
----------
5653
G : GraphV2
@@ -125,9 +122,6 @@ def stats(
125122
"""
126123
Runs the Node Similarity algorithm and returns execution statistics.
127124
128-
The Node Similarity algorithm computes the similarity between nodes based on their neighborhoods,
129-
creating new relationships between each node and its most similar neighbors.
130-
131125
Parameters
132126
----------
133127
G : GraphV2
@@ -198,9 +192,6 @@ def stream(
198192
"""
199193
Runs the Node Similarity algorithm and returns the result as a DataFrame.
200194
201-
The Node Similarity algorithm computes the similarity between nodes based on their neighborhoods,
202-
creating new relationships between each node and its most similar neighbors.
203-
204195
Parameters
205196
----------
206197
G : GraphV2
@@ -274,9 +265,6 @@ def write(
274265
"""
275266
Runs the Node Similarity algorithm and writes the results back to the database.
276267
277-
The Node Similarity algorithm computes the similarity between nodes based on their neighborhoods,
278-
creating new relationships between each node and its most similar neighbors.
279-
280268
Parameters
281269
----------
282270
G : GraphV2
@@ -350,10 +338,7 @@ def estimate(
350338
) -> EstimationResult:
351339
"""
352340
Estimates the memory requirements for running the Node Similarity algorithm.
353-
354-
The Node Similarity algorithm computes the similarity between nodes based on their neighborhoods,
355-
creating new relationships between each node and its most similar neighbors.
356-
341+
357342
Parameters
358343
----------
359344
G : GraphV2

graphdatascience/procedure_surface/api/similarity/node_similarity_filtered_endpoints.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ def mutate(
4444
"""
4545
Runs the Filtered Node Similarity algorithm and stores the results as new relationships in the graph catalog.
4646
47-
The Filtered Node Similarity algorithm computes the similarity between nodes based on their neighborhoods
48-
with customizable source and target node filters, creating new relationships between each node and its
49-
most similar neighbors within the filtered subset.
50-
5147
Parameters
5248
----------
5349
G : GraphV2
@@ -128,10 +124,6 @@ def stats(
128124
"""
129125
Runs the Filtered Node Similarity algorithm and returns execution statistics.
130126
131-
The Filtered Node Similarity algorithm computes the similarity between nodes based on their neighborhoods
132-
with customizable source and target node filters, creating new relationships between each node and its
133-
most similar neighbors within the filtered subset.
134-
135127
Parameters
136128
----------
137129
G : GraphV2
@@ -208,10 +200,6 @@ def stream(
208200
"""
209201
Runs the Filtered Node Similarity algorithm and returns the result as a DataFrame.
210202
211-
The Filtered Node Similarity algorithm computes the similarity between nodes based on their neighborhoods
212-
with customizable source and target node filters, creating new relationships between each node and its
213-
most similar neighbors within the filtered subset.
214-
215203
Parameters
216204
----------
217205
G : GraphV2
@@ -291,10 +279,6 @@ def write(
291279
"""
292280
Runs the Filtered Node Similarity algorithm and writes the results back to the database.
293281
294-
The Filtered Node Similarity algorithm computes the similarity between nodes based on their neighborhoods
295-
with customizable source and target node filters, creating new relationships between each node and its
296-
most similar neighbors within the filtered subset.
297-
298282
Parameters
299283
----------
300284
G : GraphV2
@@ -375,10 +359,6 @@ def estimate(
375359
"""
376360
Estimates the memory requirements for running the Filtered Node Similarity algorithm.
377361
378-
The Filtered Node Similarity algorithm computes the similarity between nodes based on their neighborhoods
379-
with customizable source and target node filters, creating new relationships between each node and its
380-
most similar neighbors within the filtered subset.
381-
382362
Parameters
383363
----------
384364
G : GraphV2 | dict[str, Any]

0 commit comments

Comments
 (0)