(from_tensor)
| 162 | return tf.constant(True) |
| 163 | |
| 164 | def _ft_body(from_tensor): |
| 165 | op_encoder_result = ft_encoder_opennmt(inputs=from_tensor, |
| 166 | encoder_args=encoder_args, |
| 167 | encoder_vars_dict=encoder_variables_dict, |
| 168 | sequence_length=sequence_length) |
| 169 | return op_encoder_result |
| 170 | |
| 171 | def _eff_body(from_tensor): |
| 172 | eff_encoder_result = ft_encoder_opennmt(inputs=from_tensor, |
nothing calls this directly
no test coverage detected