From 2a6c73cf8cd5627a6bb4bd0038236964e7128f17 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 16 Nov 2020 10:19:19 -0800 Subject: [PATCH] Address publishing pipelines failures. (#5806) * Address pipelines failures. * Addrss one more fp16 model failure. --- .../test/Microsoft.ML.OnnxRuntime.Tests/InferenceTest.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/csharp/test/Microsoft.ML.OnnxRuntime.Tests/InferenceTest.cs b/csharp/test/Microsoft.ML.OnnxRuntime.Tests/InferenceTest.cs index c17302bda1..f534671427 100644 --- a/csharp/test/Microsoft.ML.OnnxRuntime.Tests/InferenceTest.cs +++ b/csharp/test/Microsoft.ML.OnnxRuntime.Tests/InferenceTest.cs @@ -2,8 +2,6 @@ // Licensed under the MIT License. using Microsoft.ML.OnnxRuntime.Tensors; -using Microsoft.VisualBasic.CompilerServices; -using Onnx; using System; using System.Collections.Generic; using System.IO; @@ -679,8 +677,11 @@ namespace Microsoft.ML.OnnxRuntime.Tests { "mxnet_arcface", "Model is an invalid ONNX model"}, { "tf_inception_v2", "TODO: Debug failing model, skipping for now" }, { "fp16_tiny_yolov2", "Tolerance level for float16 is not known. We now support fp16." }, - { "test_bidaf", "Does not run in opset9, runs in other opsets. Tensors of type ElementType not currently supported in the LoadTensorFromFile." }, - { "test_mnist", "Does not run in opset9, runs in other opsets. Tensors of type ElementType not currently supported in the LoadTensorFromFile" }, + { "fp16_test_tiny_yolov2", "ImageScaler is not a registered function/op"}, + { "fp16_coreml_FNS-Candy", "ImageScaler is not a registered function/op" }, + { "fp16_coreml_LinearRegression_NYCTaxi", "Error in Node:featureVectorizer : No Op registered for FeatureVectorizer with domain_version of 1"}, + { "test_bidaf", "Does not run in opset9, runs in other opsets. The model runs but I don't have a data set to debug output locally. Tensors of type ElementType not currently supported in the LoadTensorFromFile." }, + { "test_mnist", "Does not run in opset9, runs in other opsets. The model runs but I don't have a data set to debug output locally. Tensors of type ElementType not currently supported in the LoadTensorFromFile" }, { "BERT_Squad", "Could not find an implementation for the node bert / embeddings / one_hot:OneHot(9)" }, { "mlperf_ssd_mobilenet_300", "Could not find file output_0.pb" }, { "tf_resnet_v1_50", "result mismatch when Conv BN Fusion is applied" },