如何命名没有姓名的运营商' Tensorflow中的属性

时间:2018-04-05 01:40:51

标签: python tensorflow

我尝试加载LSTM模型进行推理,但有一些操作无法命名,因此我无法在加载图表后访问它们。

我无法命名的操作是:

  1. state = tf.contrib.rnn.LSTMStateTuple(batched_c, batched_h)
  2. val, new_state = tf.nn.dynamic_rnn(layer, lstm_input, initial_state=state)
  3. 我需要访问statenew_state。在以后恢复图表之后,如何通过名称访问此类操作?

0 个答案:

没有答案