Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielegrattarola committed Apr 9, 2022
1 parent 43ce413 commit 5d97c2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="spektral",
version="1.0.9",
version="1.1.0",
packages=find_packages(),
install_requires=[
"joblib",
Expand Down
2 changes: 1 addition & 1 deletion spektral/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from . import datasets, layers, utils

__version__ = "1.0.8"
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion spektral/layers/convolutional/message_passing.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class MessagePassing(Layer):
where \( \gamma \) is a differentiable update function, \( \phi \) is a
differentiable message function, \( \square \) is a permutation-invariant
function to aggregate the messages (like the sum or the average), and
\(\E_{ij}\) is the edge attribute of edge i-j.
\(\E_{ij}\) is the edge attribute of edge j-i.
By extending this class, it is possible to create any message-passing layer
in single/disjoint mode.
Expand Down

0 comments on commit 5d97c2a

Please sign in to comment.