We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
print(xBC.shape) xBC = jax.nn.swish(x) or xBC = nnx.swish(x) print(xBC.shape)
output shape is not the same as expected
Output: (1, 128, 288) (1, 128, 128) Expect: (1, 128, 288) (1, 128, 288)
The text was updated successfully, but these errors were encountered:
Hey, currently
assert jax.nn.swish is nnx.swish
so I'm not sure what the issue could be here.
Sorry, something went wrong.
Hey, currently assert jax.nn.swish is nnx.swish so I'm not sure what the issue could be here.
I know that them the same, i mean when i use these functions, which build on each other or just other name(silu,swish), it change my input shape
No branches or pull requests
System information
Problem you have encountered:
print(xBC.shape)
xBC = jax.nn.swish(x) or xBC = nnx.swish(x)
print(xBC.shape)
output shape is not the same as expected
What you expected to happen:
Output:
(1, 128, 288)
(1, 128, 128)
Expect:
(1, 128, 288)
(1, 128, 288)
The text was updated successfully, but these errors were encountered: