我正在使用TensorFlow中的双向动态RNN进行文本标注。在处理输入的维度后,我尝试运行一个session。这是blstm设置部分:fw_lstm_cell=BasicLSTMCell(LSTM_DIMS)bw_lstm_cell=BasicLSTMCell(LSTM_DIMS)(fw_outputs,bw_outputs),_=bidirectional_dynamic_rnn(fw_lstm_cell,bw_lstm_cell,x_place,sequence_length=SEQLEN,dtype='float32')这是运行部分:withtf.Graph().as_defa
我正在使用TensorFlow中的双向动态RNN进行文本标注。在处理输入的维度后,我尝试运行一个session。这是blstm设置部分:fw_lstm_cell=BasicLSTMCell(LSTM_DIMS)bw_lstm_cell=BasicLSTMCell(LSTM_DIMS)(fw_outputs,bw_outputs),_=bidirectional_dynamic_rnn(fw_lstm_cell,bw_lstm_cell,x_place,sequence_length=SEQLEN,dtype='float32')这是运行部分:withtf.Graph().as_defa