Jane
Jane
@michael-wzhu I have got the same problem. Would you please specify how did you modify the code? and what accuracy for task1 did you obtain after the modification please?
In nn.py: replace `from tensorflow.python.ops.rnn_cell_impl import _linear` with `from tensorflow.contrib.rnn.python.ops.core_rnn_cell import _linear` replace `flat_out = _linear(flat_args, output_size, bias, bias_start=bias_start, scope=scope` with ` with tf.variable_scope(scope or 'Linear'): flat_out = _linear(flat_args, output_size,...
@hhhhlyy @yogesh-nikose I'm encountering this problem as well. Have you solved it?
> flags.DEFINE_integer("new_emb_mat", 0, "new_emb_mat") He asked What value should we pass to new_emb_mat?