diff --git a/README.md b/README.md index 5a8c893..597b1cc 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ pip install --upgrade jax jaxlib # CPU-only version ``` For other devices (e.g. GPU), follow -[these instructions](https://github.com/google/jax#installation). +[these instructions](https://github.com/jax-ml/jax#installation). Then, install FedJAX from PyPI: @@ -112,7 +112,7 @@ To cite this repository: * https://jax.readthedocs.io/en/latest/notebooks/How_JAX_primitives_work.html * https://dm-haiku.readthedocs.io/en/latest/ -[JAX]: https://github.com/google/jax +[JAX]: https://github.com/jax-ml/jax [Haiku]: https://github.com/deepmind/dm-haiku -[Stax]: https://github.com/google/jax/blob/main/jax/example_libraries/stax.py +[Stax]: https://github.com/jax-ml/jax/blob/main/jax/example_libraries/stax.py [Optax]: https://github.com/deepmind/optax diff --git a/docs/index.rst b/docs/index.rst index e2bcf2b..e53ae1c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,7 +2,7 @@ FedJAX documentation ==================== -FedJAX is a library for developing custom `Federated Learning (FL) `_ algorithms in `JAX `_. FedJAX prioritizes ease-of-use and is intended to be useful for anyone with knowledge of NumPy. +FedJAX is a library for developing custom `Federated Learning (FL) `_ algorithms in `JAX `_. FedJAX prioritizes ease-of-use and is intended to be useful for anyone with knowledge of NumPy. .. toctree:: :maxdepth: 1 diff --git a/fedjax/core/dataclasses.py b/fedjax/core/dataclasses.py index 0dec97f..3b9bc64 100644 --- a/fedjax/core/dataclasses.py +++ b/fedjax/core/dataclasses.py @@ -19,7 +19,7 @@ # Forked and slimmed down from # https://flax.readthedocs.io/en/latest/_modules/flax/struct.html#dataclass -# https://github.com/google/jax/issues/2371 +# https://github.com/jax-ml/jax/issues/2371 def dataclass(clz: type): """Creates a dataclass which can be passed to functional transformations.""" data_clz = dataclasses.dataclass(frozen=True)(clz)