简体   繁体   English

在Julia中的tf.nn.conv2d_transpose吗?

[英]tf.nn.conv2d_transpose in Julia?

Hello 你好

A simple question but I don't find it: What is the equivalent of tf.nn.conv2d_transpose in Julia ? 一个简单的问题,但我找不到:Julia中的tf.nn.conv2d_transpose等效吗?

Moreover, I have this link with some Julia commands for TensorFlow: https://github.com/malmaud/TensorFlow.jl/blob/master/docs/src/ops.md 此外,我具有用于TensorFlow的一些Julia命令的链接: https : //github.com/malmaud/TensorFlow.jl/blob/master/docs/src/ops.md

Do you know an other link with more or other commands ? 您知道带有更多或其他命令的其他链接吗?

Thank you 谢谢

Looking at a part of the logistic regression example on the github page for the julia wrapper: 在github页面上查看julia包装器的逻辑回归示例的一部分:

https://github.com/malmaud/TensorFlow.jl https://github.com/malmaud/TensorFlow.jl

Y=nn.softmax(X*W + B)
Loss = -reduce_sum(log(Y).*Y_obs)
optimizer = train.AdamOptimizer()
minimize_op = train.minimize(optimizer, Loss)
saver = train.Saver()

It looks like the TF packages are mimicked in Julia, and I specifically see the nn package referenced in the example as nn.softmax , so extrapolating from that example it must be nn.conv2d_transpose . 看起来TF包是在Julia中模仿的,我特别看到示例中引用的nn包为nn.softmax ,因此从该示例中推断出来的必须是nn.conv2d_transpose

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM