Skip to content

Commit

Permalink
[TF FE] Test TextVectorization on white-space string input and Equal …
Browse files Browse the repository at this point in the history
…on empty string tensor (#23572)

**Details:** Test `tf.keras.TextVectorization` on white-space string
input and Equal on empty string tensor.

**Ticket:** 135749

---------

Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
  • Loading branch information
rkazants authored Mar 20, 2024
1 parent 5ddca69 commit 5d5203b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/layer_tests/tensorflow_tests/test_tf_Equal.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ def create_equal_net(self, x_shape, y_shape):

return tf_net, ref_net

@pytest.mark.parametrize('x_shape', [[1], [5]])
@pytest.mark.parametrize('y_shape', [[1], [5]])
@pytest.mark.parametrize('x_shape', [[], [1], [5]])
@pytest.mark.parametrize('y_shape', [[], [1], [5]])
@pytest.mark.precommit_tf_fe
@pytest.mark.nightly
@pytest.mark.xfail(condition=platform.system() in ('Darwin', 'Linux') and platform.machine() in ['arm', 'armv7l',
Expand Down

0 comments on commit 5d5203b

Please sign in to comment.