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/nnx_basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
"\n",
"The Flax NNX Functional API establishes a clear boundary between reference/object semantics and value/pytree semantics. It also allows the same amount of fine-grained control over the state that Flax Linen and Haiku users are used to. The Flax NNX Functional API consists of three basic methods: `nnx.split`, `nnx.merge`, and `nnx.update`.\n",
"\n",
"Below is an example of of `StatefulLinear` `Module` that uses the Functional API. It contains:\n",
"Below is an example of `StatefulLinear` `Module` that uses the Functional API. It contains:\n",
"\n",
"- Some `Param` Variables; and\n",
"- A custom `Count` Variable type, which is used to track the integer scalar state that increases on every forward pass."
Expand Down
2 changes: 1 addition & 1 deletion docs_nnx/nnx_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ How do Flax NNX transforms achieve this? To understand how Flax NNX objects inte

The Flax NNX Functional API establishes a clear boundary between reference/object semantics and value/pytree semantics. It also allows the same amount of fine-grained control over the state that Flax Linen and Haiku users are used to. The Flax NNX Functional API consists of three basic methods: `nnx.split`, `nnx.merge`, and `nnx.update`.

Below is an example of of `StatefulLinear` `Module` that uses the Functional API. It contains:
Below is an example of `StatefulLinear` `Module` that uses the Functional API. It contains:

- Some `Param` Variables; and
- A custom `Count` Variable type, which is used to track the integer scalar state that increases on every forward pass.
Expand Down
Loading