【发布时间】:2017-08-19 04:27:01
【问题描述】:
我正在使用 tf.python.ops.rnn_cell.GRUCell
output, state = tf.nn.dynamic_rnn(
GRUCell(HID_DIM),
sequence,
dtype=tf.float32,
sequence_length=length(sequence)
)
我如何获得这个 GRUCell 的权重。我需要查看它们以进行调试。
【问题讨论】:
标签: python tensorflow lstm recurrent-neural-network