[TF FE] NgramCompilation test fix (#16636)

* [TF FE] NgramCompilation test fixed

---------

Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>
This commit is contained in:
Vladislav Golubev 2023-03-29 20:34:23 +02:00 committed by GitHub
parent 2a01695370
commit b0e6b1e83c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ class CompileModelsTests : public ::testing::Test {};
TEST_F(CompileModelsTests, NgramCompilation) {
ov::Core core;
auto model = convert_model("model_ngram/model_ngram.pb");
auto model = convert_model("model_ngram/model_ngram.pbtxt");
ov::CompiledModel compiled_model = core.compile_model(model, "CPU");
const auto runtime_model = compiled_model.get_runtime_model();