Skip to content

Commit cb0fa04

Browse files
cleanup
1 parent b4b9020 commit cb0fa04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ authors = ["Carlo Lucibello and contributors"]
44
version = "0.1.0"
55

66
[deps]
7-
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
87
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
98
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
109
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
@@ -34,6 +33,7 @@ NNlibCUDA = "0.1"
3433
julia = "1.6"
3534

3635
[extras]
36+
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
3737
ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a"
3838
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
3939
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/layers/conv.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ where ``f_\Theta`` typically denotes a learnable function, e.g. a linear layer o
412412
413413
# Arguments
414414
415-
- ``f``: A (possibly learnable) function acting on node features.
415+
- `f`: A (possibly learnable) function acting on node features.
416416
- `eps`: Weighting factor.
417417
"""
418418
struct GINConv{R<:Real} <: GNNLayer
@@ -460,7 +460,7 @@ For convenience, also functions returning a single `(out*in, num_edges)` matrix
460460
461461
- `in`: The dimension of input features.
462462
- `out`: The dimension of output features.
463-
- ``f``: A (possibly learnable) function acting on edge features.
463+
- `f`: A (possibly learnable) function acting on edge features.
464464
- `aggr`: Aggregation operator for the incoming messages (e.g. `+`, `*`, `max`, `min`, and `mean`).
465465
- `σ`: Activation function.
466466
- `bias`: Add learnable bias.

0 commit comments

Comments
 (0)