Skip to content

Commit

Permalink
Fixed loading error when we see string type (#18837)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkrivor authored Jul 28, 2023
1 parent 5e846a0 commit 9bf5b6e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/frontends/tensorflow_lite/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ ov::element::Type ov::frontend::tensorflow_lite::get_ov_type(const tflite::Tenso
{tflite::TensorType_UINT16, element::u16},
{tflite::TensorType_INT4, element::i4},
{tflite::TensorType_COMPLEX64, element::dynamic},
{tflite::TensorType_STRING, element::dynamic},
// TODO: support the following types
// {TensorType_STRING, element::string},
// {TensorType_COMPLEX128, element::complex128},
Expand Down

0 comments on commit 9bf5b6e

Please sign in to comment.