(self)
| 91 | self.assertTrue(feature_column_v2.is_feature_column_v2([feature_column])) |
| 92 | |
| 93 | def testConfig(self): |
| 94 | text_column = hub.text_embedding_column_v2( |
| 95 | "text", self.model, trainable=True) |
| 96 | config = text_column.get_config() |
| 97 | cloned_column = hub.feature_column_v2._TextEmbeddingColumnV2.from_config( |
| 98 | config) |
| 99 | self.assertEqual(cloned_column.module_path, text_column.module_path) |
| 100 | |
| 101 | def testDenseFeaturesDirectly(self): |
| 102 | features = { |
nothing calls this directly
no test coverage detected