(batch, output, i)
| 373 | facts = tf.expand_dims(facts, 1) |
| 374 | |
| 375 | def cond(batch, output, i): |
| 376 | return tf.less(i, tf.shape(batch)[1]) |
| 377 | |
| 378 | def body(batch, output, i): |
| 379 | self_attention_tmp = din_fcn_attention(batch[:, i, :], batch[:, 0:i+1, :], |
nothing calls this directly
no outgoing calls
no test coverage detected