nla2021 icon indicating copy to clipboard operation
nla2021 copied to clipboard

Lecture 1: `index_update` is deprecated in `jax`

Open postrou opened this issue 3 years ago • 0 comments

jax.ops.index_update is deprecated, so in Summation section the line x = jax.ops.index_update(x, [0], 1.) needs to be changed to x = x.at[0].set(1)

postrou avatar Jul 25 '22 10:07 postrou