File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99copyright = f'{ datetime .datetime .now ().year } , { author } '
1010
1111extensions = [
12+ 'autoapi.extension' ,
1213 'sphinx.ext.autodoc' ,
1314 'sphinx.ext.intersphinx' ,
1415 'sphinx.ext.mathjax' ,
3637}
3738
3839add_module_names = False
40+ autoapi_type = 'python'
41+ autoapi_dirs = ['../../torch_geometric_signed_directed' ]
42+ autoapi_add_toctree_entry = False
43+ autoapi_python_class_content = 'both'
44+ autoapi_options = [
45+ 'members' ,
46+ 'undoc-members' ,
47+ 'show-inheritance' ,
48+ 'show-module-summary' ,
49+ ]
50+
3951autodoc_mock_imports = [
4052 'torch' ,
4153 'torch_geometric' ,
Original file line number Diff line number Diff line change @@ -4,9 +4,14 @@ PyTorch Geometric Signed Directed Models
44.. contents :: Contents
55 :local:
66
7- Directed Undirected Network Models and Layers
7+ Directed (Unsigned) Network Models and Layers
88--------------
99
10+ This section documents directed graph models and core directed convolution
11+ layers available in PyTorch Geometric Signed Directed. Each entry includes the
12+ class/function signature and parameter documentation extracted from source
13+ docstrings.
14+
1015.. autoapimodule :: torch_geometric_signed_directed.nn.directed.MagNet_node_classification
1116 :members:
1217 :exclude-members:
@@ -70,6 +75,9 @@ Directed Undirected Network Models and Layers
7075Signed (Directed) Network Models and Layers
7176--------------
7277
78+ This section covers methods tailored to signed graphs (including signed
79+ directed settings), with links to model and layer level APIs.
80+
7381.. autoapimodule :: torch_geometric_signed_directed.nn.signed.SSSNET_node_clustering
7482 :members:
7583 :exclude-members:
@@ -119,6 +127,9 @@ Signed (Directed) Network Models and Layers
119127Auxiliary Methods and Layers
120128--------------
121129
130+ This section contains supporting layers and helper operations used by the
131+ directed and signed model families.
132+
122133.. autoapimodule :: torch_geometric_signed_directed.nn.directed.complex_relu
123134 :members:
124135 :exclude-members:
You can’t perform that action at this time.
0 commit comments