@@ -175,6 +175,15 @@ googlenet_v4_slim:
175
175
- InceptionV4/Logits/Predictions:0
176
176
rtol : 0.1
177
177
178
+ mobilenet_v3_large_float :
179
+ url : https://storage.googleapis.com/mobilenet_v3/checkpoints/v3-large_224_1.0_float.tgz
180
+ model : v3-large_224_1.0_float/v3-large_224_1.0_float.pb
181
+ input_get : get_beach
182
+ inputs :
183
+ " input:0 " : [1, 224, 224, 3]
184
+ outputs :
185
+ - MobilenetV3/Predictions/Softmax:0
186
+
178
187
mobilenet_v2_1.4_224 :
179
188
url : https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz
180
189
model : mobilenet_v2_1.4_224_frozen.pb
@@ -237,7 +246,6 @@ resnet50_v2_nchw: # NOTE: Tensorflow 1.9.0 fails
237
246
- ArgMax:0
238
247
- softmax_tensor:0
239
248
240
-
241
249
resnet50_v2_nhwc :
242
250
model_type : saved_model
243
251
url : http://download.tensorflow.org/models/official/20181001_resnet/savedmodels/resnet_v2_fp32_savedmodel_NHWC.tar.gz
@@ -261,7 +269,6 @@ resnet50_fp16_v2:
261
269
- ArgMax:0
262
270
- softmax_tensor:0
263
271
264
-
265
272
resnet50_v1 :
266
273
disabled : true # works, disabled because its nearly the same as resnet50_v2_nchw
267
274
skip_tensorflow : true # tensorflow fails: Default MaxPoolingOp only supports NHWC on device type CPU
@@ -275,19 +282,18 @@ resnet50_v1:
275
282
- ArgMax:0
276
283
- softmax_tensor:0
277
284
278
- #
279
- # models that will never work
280
- #
281
- style-transfer :
282
- # quantitized model
283
- disabled : true
284
- url : https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip
285
- model : stylize_quantized.pb
285
+ ssd_mobilenet_v3_large_coco :
286
+ url : http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v3_large_coco_2019_08_14.tar.gz
287
+ model : ssd_mobilenet_v3_large_coco_2019_08_14/frozen_inference_graph.pb
288
+ opset_constraints :
289
+ " onnx " :
290
+ " min " : 10
286
291
input_get : get_beach
287
292
inputs :
288
- " input :0" : [1, 416, 416 , 3]
293
+ " normalized_input_image_tensor :0" : [1, 320, 320 , 3]
289
294
outputs :
290
- - output:0
295
+ - raw_outputs/box_encodings:0
296
+ - raw_outputs/class_predictions:0
291
297
292
298
ssd_mobilenet_v1_coco :
293
299
url : http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_2017_11_17.tar.gz
@@ -305,10 +311,13 @@ ssd_mobilenet_v1_coco:
305
311
- detection_classes:0
306
312
307
313
ssd_mobilenet_v2_coco :
308
- # issues with control flow
314
+ # works with opset-10
309
315
disabled : true
310
316
url : http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v2_coco_2018_03_29.tar.gz
311
317
model : ssd_mobilenet_v2_coco_2018_03_29/frozen_inference_graph.pb
318
+ opset_constraints :
319
+ " onnx " :
320
+ " min " : 10
312
321
input_get : get_beach
313
322
inputs :
314
323
" image_tensor:0 " : [1, 224, 224, 3]
@@ -319,10 +328,13 @@ ssd_mobilenet_v2_coco:
319
328
- detection_classes:0
320
329
321
330
ssdlite_mobilenet_v2_coco :
322
- # issues with control flow
331
+ # works with opset-10
323
332
disabled : true
324
333
url : http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz
325
334
model : ssdlite_mobilenet_v2_coco_2018_05_09/frozen_inference_graph.pb
335
+ opset_constraints :
336
+ " onnx " :
337
+ " min " : 10
326
338
input_get : get_beach
327
339
inputs :
328
340
" image_tensor:0 " : [1, 224, 224, 3]
@@ -333,10 +345,12 @@ ssdlite_mobilenet_v2_coco:
333
345
- detection_classes:0
334
346
335
347
ssd_inception_v2_coco :
336
- # issues with control flow
337
348
disabled : true
338
349
url : http://download.tensorflow.org/models/object_detection/ssd_inception_v2_coco_2017_11_17.tar.gz
339
350
model : ssd_inception_v2_coco_2017_11_17/frozen_inference_graph.pb
351
+ opset_constraints :
352
+ " onnx " :
353
+ " min " : 10
340
354
input_get : get_beach
341
355
inputs :
342
356
" image_tensor:0 " : [1, 224, 224, 3]
@@ -345,3 +359,18 @@ ssd_inception_v2_coco:
345
359
- detection_scores:0
346
360
- num_detections:0
347
361
- detection_classes:0
362
+
363
+ #
364
+ # models that will not work
365
+ #
366
+ style-transfer :
367
+ # quantitized model
368
+ disabled : true
369
+ url : https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip
370
+ model : stylize_quantized.pb
371
+ input_get : get_beach
372
+ inputs :
373
+ " input:0 " : [1, 416, 416, 3]
374
+ outputs :
375
+ - output:0
376
+
0 commit comments