(*inputs)
| 955 | |
| 956 | def custom(start, end): |
| 957 | def custom_forward(*inputs): |
| 958 | x_ = inputs[0] |
| 959 | for index in range(start, end): |
| 960 | layer = self._get_layer(index) |
| 961 | x_ = layer(x_, inputs[1]) |
| 962 | return x_ |
| 963 | |
| 964 | return custom_forward |
| 965 |
nothing calls this directly
no test coverage detected