(inputs)
| 172 | |
| 173 | # Create a function to explicitly set the names of the outputs |
| 174 | def predict(inputs): |
| 175 | outputs, states = model(inputs) |
| 176 | return {**states, 'logits': outputs} |
| 177 | |
| 178 | specs = { |
| 179 | name: tf.TensorSpec(spec.shape, name=name, dtype=spec.dtype) |
nothing calls this directly
no outgoing calls
no test coverage detected