Enable a disabled testcase, since it is fixed.

PiperOrigin-RevId: 316952692
Change-Id: I70d295634012685097b2324b156b2552218d62d7
This commit is contained in:
A. Unique TensorFlower 2020-06-17 13:23:53 -07:00 committed by TensorFlower Gardener
parent cca9b615b2
commit f8195170f8

View File

@ -1503,7 +1503,7 @@ class TextVectorizationSavingTest(
loaded_model = keras.models.load_model(output_path)
self.assertAllEqual(loaded_model.predict(input_array), expected_output)
def DISABLE_test_saving_with_tfidf(self):
def test_saving_with_tfidf(self):
vocab_data = ["earth", "wind", "and", "fire"]
tfidf_data = [.5, .25, .2, .125]
input_array = np.array([["earth", "wind", "and", "earth"],