Skip to content

Commit 4061ca9

Browse files
authored
add inception_v4 (#1641)
* add inception_v4 Signed-off-by: Guenther Schmuelling <[email protected]> * add faster_rcnn_resnet101 Signed-off-by: Guenther Schmuelling <[email protected]>
1 parent 33e43b4 commit 4061ca9

File tree

1 file changed

+41
-13
lines changed

1 file changed

+41
-13
lines changed

tests/run_pretrained_models.yaml

Lines changed: 41 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,18 @@ inception_v3_slim:
144144
rtol: 0.02
145145
atol: 0.00001
146146

147+
inception_v4:
148+
disabled: true # works, keeping down to limit ci time
149+
url: https://storage.googleapis.com/download.tensorflow.org/models/inception_v4_2016_09_09_frozen.pb.tar.gz
150+
model: inception_v4_2016_09_09_frozen.pb
151+
input_get: get_beach
152+
inputs:
153+
"input:0": [1, 299, 299, 3]
154+
outputs:
155+
- InceptionV4/Logits/Predictions:0
156+
rtol: 0.02
157+
atol: 0.00001
158+
147159
googlenet_v1_nonslim:
148160
disabled: true
149161
url: https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip
@@ -336,7 +348,7 @@ ssd_mobilenet_v1_coco:
336348

337349
ssd_mobilenet_v2_coco:
338350
# works with opset-10
339-
disabled: true
351+
disabled: true # works, keeping down to limit ci time
340352
url: http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v2_coco_2018_03_29.tar.gz
341353
model: ssd_mobilenet_v2_coco_2018_03_29/frozen_inference_graph.pb
342354
opset_constraints:
@@ -353,7 +365,7 @@ ssd_mobilenet_v2_coco:
353365

354366
ssdlite_mobilenet_v2_coco:
355367
# works with opset-10
356-
disabled: true
368+
disabled: true # works, keeping down to limit ci time
357369
url: http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz
358370
model: ssdlite_mobilenet_v2_coco_2018_05_09/frozen_inference_graph.pb
359371
opset_constraints:
@@ -369,7 +381,7 @@ ssdlite_mobilenet_v2_coco:
369381
- detection_classes:0
370382

371383
ssd_inception_v2_coco:
372-
disabled: true
384+
disabled: true # works, keeping down to limit ci time
373385
url: http://download.tensorflow.org/models/object_detection/ssd_inception_v2_coco_2017_11_17.tar.gz
374386
model: ssd_inception_v2_coco_2017_11_17/frozen_inference_graph.pb
375387
opset_constraints:
@@ -384,19 +396,21 @@ ssd_inception_v2_coco:
384396
- num_detections:0
385397
- detection_classes:0
386398

387-
#
388-
# models that will not work
389-
#
390-
style-transfer:
391-
# quantitized model
392-
disabled: true
393-
url: https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip
394-
model: stylize_quantized.pb
399+
faster_rcnn_resnet101:
400+
disabled: true # works, keeping down to limit ci time
401+
url: http://download.tensorflow.org/models/object_detection/faster_rcnn_resnet101_coco_2018_01_28.tar.gz
402+
model: faster_rcnn_resnet101_coco_2018_01_28/frozen_inference_graph.pb
403+
opset_constraints:
404+
"onnx":
405+
"min": 11
395406
input_get: get_beach
396407
inputs:
397-
"input:0": [1, 416, 416, 3]
408+
"image_tensor:0": [1, 224, 224, 3]
398409
outputs:
399-
- output:0
410+
- detection_boxes:0
411+
- detection_classes:0
412+
- detection_scores:0
413+
- num_detections:0
400414

401415
faster_rcnn_inception_v2_coco:
402416
url: http://download.tensorflow.org/models/object_detection/faster_rcnn_inception_v2_coco_2018_01_28.tar.gz
@@ -688,3 +702,17 @@ ssd_mobilenet_v1_tfjs:
688702
- Postprocessor/ExpandDims_1:0
689703
rtol: 0.05
690704
atol: 0.0005
705+
706+
#
707+
# models that will not work
708+
#
709+
style-transfer:
710+
# quantitized model
711+
disabled: true
712+
url: https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip
713+
model: stylize_quantized.pb
714+
input_get: get_beach
715+
inputs:
716+
"input:0": [1, 416, 416, 3]
717+
outputs:
718+
- output:0

0 commit comments

Comments
 (0)