(*inputs, **kwargs)
| 671 | """ |
| 672 | def create_custom_forward(module): |
| 673 | def custom_forward(*inputs, **kwargs): |
| 674 | return module(*inputs, **kwargs) |
| 675 | return custom_forward |
| 676 | |
| 677 | if attend_to_text_mask is None: |
nothing calls this directly
no outgoing calls
no test coverage detected