(self)
| 312 | return path |
| 313 | |
| 314 | def test_while(self): |
| 315 | first_path = self._v1_while_saved_model() |
| 316 | imported = load.load(first_path) |
| 317 | function = imported.signatures["serving_default"] |
| 318 | self.assertAllClose({"output": 10}, function(constant_op.constant(4))) |
| 319 | self.assertAllClose({"output": 15}, function(constant_op.constant(5))) |
| 320 | |
| 321 | def _v1_nested_while_saved_model(self): |
| 322 | export_graph = ops.Graph() |
nothing calls this directly
no test coverage detected