[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:
parent
1655bb1bc7
commit
3286fb3c17
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue