Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 695375318
  • Loading branch information
Jake VanderPlas authored and copybara-github committed Nov 11, 2024
1 parent 2826f11 commit 6138208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmoe/initialization/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ class ReshapeTransformation(Transformation):
shape: Tuple[int, ...] = flax.struct.field(pytree_node=False)

def __call__(self) -> Array:
return jnp.reshape(self.array, newshape=self.shape)
return jnp.reshape(self.array, shape=self.shape)


class SqueezeTransformation(Transformation):
Expand Down

0 comments on commit 6138208

Please sign in to comment.