(inp)
| 484 | with vs.variable_scope("bw") as bw_scope: |
| 485 | |
| 486 | def _map_reverse(inp): |
| 487 | return _reverse( |
| 488 | inp, |
| 489 | seq_lengths=sequence_length, |
| 490 | seq_axis=time_axis, |
| 491 | batch_axis=batch_axis) |
| 492 | |
| 493 | inputs_reverse = nest.map_structure(_map_reverse, inputs) |
| 494 | tmp, output_state_bw = dynamic_rnn( |
nothing calls this directly
no test coverage detected