Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fix in JAX_porting_PyTorch_model tutorial #88

Merged
merged 1 commit into from
Nov 8, 2024
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
5 changes: 4 additions & 1 deletion docs/JAX_porting_PyTorch_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -592,9 +592,12 @@
" self.p = p\n",
" self.mode = mode\n",
" self.deterministic = False\n",
" self.rngs = rngs\n",
"\n",
" def __call__(self, x: jax.Array) -> jax.Array:\n",
" return stochastic_depth(x, self.p, self.mode, self.deterministic)"
" return stochastic_depth(\n",
" x, self.p, self.mode, self.deterministic, rngs=self.rngs\n",
" )"
]
},
{
Expand Down
5 changes: 4 additions & 1 deletion docs/JAX_porting_PyTorch_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,12 @@ class StochasticDepth(nnx.Module):
self.p = p
self.mode = mode
self.deterministic = False
self.rngs = rngs

def __call__(self, x: jax.Array) -> jax.Array:
return stochastic_depth(x, self.p, self.mode, self.deterministic)
return stochastic_depth(
x, self.p, self.mode, self.deterministic, rngs=self.rngs
)
```

```{code-cell} ipython3
Expand Down