gpt4 book ai didi

tensorflow - 寻找与 Pytorch GRU 功能等效的 TensorFlow

转载 作者:行者123 更新时间:2023-12-03 20:48:20 25 4
gpt4 key购买 nike

我对如何在 TensorFlow 中重建以下 Pytorch 代码感到困惑。它同时使用输入大小 x和隐藏大小 h创建 GRU 层

import torch
torch.nn.GRU(64, 64*2, batch_first=True, return_state=True)
本能地,我首先尝试了以下方法:
import tensorflow as tf
tf.keras.layers.GRU(64, return_state=True)
但是,我意识到它并没有真正解释 h或隐藏大小。在这种情况下我该怎么办?

最佳答案

tensorflow 示例中的隐藏大小为 64。要获得等价物,您应该使用

import tensorflow as tf
tf.keras.layers.GRU(64*2, return_state=True)
这是因为 keras 层不需要您指定输入大小(本例中为 64);它是在您第一次构建或运行模型时决定的。

关于tensorflow - 寻找与 Pytorch GRU 功能等效的 TensorFlow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64399426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com