bidirectional

Efficient, DRY bi-directional lookup in both python and C++

Efficient, DRY bi-directional lookup in both python and C++ Question: In our workflow, we have a few tables of integer ID <-> string name mappings (e.g., status/error codes, hardware IDs, etc.). We are trying to find the best way to write a bidirectional lookup library for these values in both C++ and python. The interfaces …

Total answers: 2

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

ValueError: Tensor must be from the same graph as Tensor with Bidirectinal RNN in Tensorflow Question: 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, …

Total answers: 3