Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs_nnx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Features
.. div:: sd-font-normal

Flax NNX allows fine-grained control of the model's state via
its `Filter <https://flax.readthedocs.io/en/latest/nnx/filters_guide.html>`__
its `Filter <https://flax.readthedocs.io/en/latest/guides/filters_guide.html>`__
system.

.. grid-item::
Expand Down
4 changes: 2 additions & 2 deletions flax/nnx/transforms/iteration.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def vmap(
addition to integers and None, :class:`StateAxes` can be used to control
how graph nodes like Modules are vectorized by specifying the axes to be
applied to substates of the graph node given a `Filter
<https://flax.readthedocs.io/en/latest/nnx/filters_guide.html>`__.
<https://flax.readthedocs.io/en/latest/guides/filters_guide.html>`__.
out_axes: An integer, None, or pytree indicating where the mapped axis
should appear in the output (see `jax.vmap
<https://jax.readthedocs.io/en/latest/_autosummary/jax.vmap.html>`__).
Expand Down Expand Up @@ -454,7 +454,7 @@ def pmap(
addition to integers and None, :class:`StateAxes` can be used to control
how graph nodes like Modules are vectorized by specifying the axes to be
applied to substates of the graph node given a `Filter
<https://flax.readthedocs.io/en/latest/nnx/filters_guide.html>`__.
<https://flax.readthedocs.io/en/latest/guides/filters_guide.html>`__.
out_axes: An integer, None, or pytree indicating where the mapped axis
should appear in the output (see `jax.vmap
<https://jax.readthedocs.io/en/latest/_autosummary/jax.vmap.html>`__).
Expand Down
Loading