Skip to content

Commit

Permalink
Merge pull request #16 from oarriaga:master
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 385568814
Change-Id: I57ca8554040e2fb6e1497b3b3f468c43235c937b
  • Loading branch information
jg8610 committed Jul 23, 2021
2 parents f050fe5 + 38ed06b commit 967e344
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Jraph (pronounced "giraffe") is a lightweight library for working with graph
neural networks in jax. It provides a data structure for graphs, a set of
utilites for working with graphs, and a 'zoo' of forkable graph neural network
utilities for working with graphs, and a 'zoo' of forkable graph neural network
models.

## Installation
Expand All @@ -26,7 +26,7 @@ doesn't prescribe a way to write or develop graph neural networks.

* `graph.py` provides a lightweight data structure, `GraphsTuple`, for working
with graphs.
* `utils.py` provides utilies for working with `GraphsTuples` in jax.
* `utils.py` provides utilities for working with `GraphsTuples` in jax.
* Utilities for batching datasets of `GraphsTuples`.
* Utilities to support jit compilation of variable shaped graphs via
padding and masking.
Expand Down
2 changes: 1 addition & 1 deletion jraph/examples/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run():
senders=np.array([0, 1]), receivers=np.array([2, 2]))
logging.info("Single graph %r", single_graph)

# Creates a GraphsTuple from scatch containing a single graph with nested
# Creates a GraphsTuple from scratch containing a single graph with nested
# feature vectors.
# The graph has 3 nodes and 2 edges.
# The feature vector can be arbitrary nested types of dict, list and tuple,
Expand Down

0 comments on commit 967e344

Please sign in to comment.