@@ -144,6 +144,18 @@ inception_v3_slim:
144
144
rtol : 0.02
145
145
atol : 0.00001
146
146
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
+
147
159
googlenet_v1_nonslim :
148
160
disabled : true
149
161
url : https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip
@@ -336,7 +348,7 @@ ssd_mobilenet_v1_coco:
336
348
337
349
ssd_mobilenet_v2_coco :
338
350
# works with opset-10
339
- disabled : true
351
+ disabled : true # works, keeping down to limit ci time
340
352
url : http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v2_coco_2018_03_29.tar.gz
341
353
model : ssd_mobilenet_v2_coco_2018_03_29/frozen_inference_graph.pb
342
354
opset_constraints :
@@ -353,7 +365,7 @@ ssd_mobilenet_v2_coco:
353
365
354
366
ssdlite_mobilenet_v2_coco :
355
367
# works with opset-10
356
- disabled : true
368
+ disabled : true # works, keeping down to limit ci time
357
369
url : http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz
358
370
model : ssdlite_mobilenet_v2_coco_2018_05_09/frozen_inference_graph.pb
359
371
opset_constraints :
@@ -369,7 +381,7 @@ ssdlite_mobilenet_v2_coco:
369
381
- detection_classes:0
370
382
371
383
ssd_inception_v2_coco :
372
- disabled : true
384
+ disabled : true # works, keeping down to limit ci time
373
385
url : http://download.tensorflow.org/models/object_detection/ssd_inception_v2_coco_2017_11_17.tar.gz
374
386
model : ssd_inception_v2_coco_2017_11_17/frozen_inference_graph.pb
375
387
opset_constraints :
@@ -384,19 +396,21 @@ ssd_inception_v2_coco:
384
396
- num_detections:0
385
397
- detection_classes:0
386
398
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
395
406
input_get : get_beach
396
407
inputs :
397
- " input :0" : [1, 416, 416 , 3]
408
+ " image_tensor :0" : [1, 224, 224 , 3]
398
409
outputs :
399
- - output:0
410
+ - detection_boxes:0
411
+ - detection_classes:0
412
+ - detection_scores:0
413
+ - num_detections:0
400
414
401
415
faster_rcnn_inception_v2_coco :
402
416
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:
688
702
- Postprocessor/ExpandDims_1:0
689
703
rtol : 0.05
690
704
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