Skip to content

Commit

Permalink
Fix bug in OD TF saved model example (#2050)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddvenk authored Sep 29, 2022
1 parent 53022b9 commit d306d2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static DetectedObjects predict() throws IOException, ModelException, Tran
.setTypes(Image.class, DetectedObjects.class)
.optModelUrls(modelUrl)
// saved_model.pb file is in the subfolder of the model archive file
.optModelName("ssd_mobilenet_v2_320x320_coco17_tpu-8/saved_model")
.optModelName("saved_model")
.optTranslator(new MyTranslator())
.optEngine("TensorFlow")
.optProgress(new ProgressBar())
Expand Down

0 comments on commit d306d2f

Please sign in to comment.