Test a Sequential tf.keras model has debug info captured.
(self, test_context)
| 1889 | @parameterized.named_parameters(('_graph', context.graph_mode), |
| 1890 | ('_eager', context.eager_mode)) |
| 1891 | def testGraphDebugInfo(self, test_context): |
| 1892 | """Test a Sequential tf.keras model has debug info captured.""" |
| 1893 | with test_context(): |
| 1894 | self._getSequentialModel() |
| 1895 | converter = lite.TFLiteConverter.from_keras_model_file(self._keras_file) |
| 1896 | converter.convert() |
| 1897 | self.assertValidDebugInfo(converter._debug_info) |
| 1898 | |
| 1899 | |
| 1900 | class GrapplerTest(TestModels): |
nothing calls this directly
no test coverage detected