[DOC][TF FE] Remove WA step in showcase (#22822)

**Details:** Remove WA step in showcase for TF Hub model. Now it is no
longer needed to use temporal directory for conversion. It can be passed
directly from memory.

**Ticket:** TBD

Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
This commit is contained in:
Roman Kazantsev 2024-02-14 00:55:06 +04:00 committed by GitHub
parent 1655bb1bc7
commit 3286fb3c17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -207,8 +207,7 @@ public repositories:
# Check model page for information about input shape: https://tfhub.dev/google/imagenet/mobilenet_v1_100_224/classification/5
model.build([None, 224, 224, 3])
model.save('mobilenet_v1_100_224') # use a temporary directory
ov_model = ov.convert_model('mobilenet_v1_100_224')
ov_model = ov.convert_model(model)
###### Option 1: Save to OpenVINO IR: