Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ValueError: Tensor must be from the same graph as Tensor with Bidirectinal RNN in Tensorflow

I'm doing text tagger using Bidirectional dynamic RNN in tensorflow. After maching input's dimension, I tried to run a Session. this is blstm setting parts:

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') 

and this is runing part:

  with tf.Graph().as_default():     # Placehoder Settings     x_place, y_place = set_placeholder(BATCH_SIZE, EM_DIMS, MAXLEN)      # BLSTM Model Building     hlogits = tf_kcpt.build_blstm(x_place)      # Compute loss     loss = tf_kcpt.get_loss(log_likelihood)      # Training     train_op = tf_kcpt.training(loss)      # load Eval method     eval_correct = tf_kcpt.evaluation(logits, y_place)      # Session Setting & Init     init = tf.global_variables_initializer()     sess = tf.Session()     sess.run(init)      # tensor summary setting     summary = tf.summary.merge_all()     summary_writer = tf.summary.FileWriter(LOG_DIR, sess.graph)      # Save     saver = tf.train.Saver()      # Run epoch     for step in range(EPOCH):         start_time = time.time()          feed_dict = fill_feed_dict(KCPT_SET['train'], x_place, y_place)         _, loss_value = sess.run([train_op, loss], feed_dict=feed_dict) 

But, it give me the error:

ValueError: Tensor("Shape:0", shape=(1,), dtype=int32) must be from the same graph as Tensor("bidirectional_rnn/fw/fw/stack_2:0", shape=(1,), dtype=int32).

Help me, please

like image 242
Namang-K Avatar asked Mar 06 '17 02:03

Namang-K


1 Answers

TensorFlow stores all operations on an operational graph. This graph defines what functions output to where, and it links it all together so that it can follow the steps you have set up in the graph to produce your final output. If you try to input a Tensor or operation on one graph into a Tensor or operation on another graph it will fail. Everything must be on the same execution graph.

Try removing with tf.Graph().as_default():

TensorFlow provides you a default graph which is referred to if you do not specify a graph. You are probably using the default graph in one spot and a different graph in your training block.

There does not seem to be a reason you are specifying a graph as default here and most likely you are using separate graphs on accident. If you really want to specify a graph then you probably want to pass it as a variable, not set it like this.

like image 57
Max Weinzierl Avatar answered Sep 17 '22 23:09

Max Weinzierl