jax-ml/jax
lax.conv_transpose has different convention than TF, document it and make switching easy?
开放
#14,337 创建于 2023年2月7日
documentationenhancementgood first issue
仓库指标
- 星标
- (36,206 个星标)
- PR 合并指标
- (平均合并 2天 19小时) (30 天内合并 439 个 PR)
描述
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.