Skip to content

Commit ca721c9

Browse files
committed
Remove class doc strings for endpoint classes
1 parent 0cdedbc commit ca721c9

File tree

12 files changed

+1
-38
lines changed

12 files changed

+1
-38
lines changed

graphdatascience/model/v2/model_api.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44

55

66
class ModelApi(ABC):
7-
"""
8-
Abstract base class defining the API for model operations.
9-
This class is intended to be subclassed by specific model implementations.
10-
"""
117

128
@abstractmethod
139
def exists(self, model: str) -> bool:

graphdatascience/procedure_surface/api/catalog/graph_sampling_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010

1111

1212
class GraphSamplingEndpoints(ABC):
13-
"""
14-
Abstract base class defining the API for graph sampling operations.
15-
"""
1613

1714
@abstractmethod
1815
def rwr(

graphdatascience/procedure_surface/api/community/conductance_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99

1010

1111
class ConductanceEndpoints(ABC):
12-
"""
13-
Abstract base class defining the API for the Conductance algorithm.
14-
"""
1512

1613
@abstractmethod
1714
def stream(

graphdatascience/procedure_surface/api/community/kcore_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class KCoreEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the K-Core decomposition algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

graphdatascience/procedure_surface/api/community/louvain_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class LouvainEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Louvain algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

graphdatascience/procedure_surface/api/community/scc_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class SccEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Strongly Connected Components (SCC) algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

graphdatascience/procedure_surface/api/community/wcc_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class WccEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Weakly Connected Components (WCC) algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@
1212

1313

1414
class FastRPEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the FastRP (Fast Random Projection) algorithm.
17-
18-
FastRP is a node embedding algorithm that creates vector representations of nodes
19-
by combining random projections and iterative neighbor aggregation.
20-
"""
2115

2216
@abstractmethod
2317
def mutate(

graphdatascience/procedure_surface/api/node_embedding/graphsage_predict_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class GraphSagePredictEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the GraphSage prediction algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def stream(

graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class HashGNNEndpoints(ABC):
15-
"""
16-
Abstract base class for HashGNN (Heterogeneous GraphV2 Neural Network) endpoints.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

0 commit comments

Comments
 (0)