jax-ml/jax
lax.conv_transpose has different convention than TF, document it and make switching easy?
Open
#14,337 opened on Feb 7, 2023
documentationenhancementgood first issue
Repository metrics
- Stars
- (36,174 stars)
- PR merge metrics
- (Avg merge 2d 19h) (439 merged PRs in 30d)
Description
See screenshot:
Though the example uses Haiku, Haiku is just calling through to lax.conv_transpose.
The difference is in reversing the spatial axes of the kernel.
We can do at least two things to make this less surprising and more easily fixable:
- document the difference, and
- add an argument to
lax.conv_transposeto instead use the TF convention.