Skip to content

Commit

Permalink
fix test name for MixUp layer (keras-team#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoffer Hjort authored Jan 18, 2022
1 parent 5f93d18 commit 20e98ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras_cv/layers/preprocessing/mix_up_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_label_smoothing(self):
xs, ys = layer(xs, ys)
self.assertNotAllClose(ys, 0.0)

def test_cut_mix_call_results(self):
def test_mix_up_call_results(self):
xs = tf.cast(
tf.stack([2 * tf.ones((4, 4, 3)), tf.ones((4, 4, 3))], axis=0,), tf.float32,
)
Expand Down

0 comments on commit 20e98ad

Please sign in to comment.