From b9fcad506a2ae99c4ead498f73485df495d29f5b Mon Sep 17 00:00:00 2001 From: Antonio Velazquez Date: Wed, 14 Oct 2020 19:14:49 -0700 Subject: [PATCH 1/4] Added prerelease feed and updated to 1.5.2 --- Directory.Build.props | 1 + build/Dependencies.props | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 5ef129c098..0bfc9fb656 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -25,6 +25,7 @@ https://dotnet.myget.org/F/roslyn-analyzers/api/v3/index.json; https://pkgs.dev.azure.com/dnceng/public/_packaging/MachineLearning/nuget/v3/index.json; https://pkgs.dev.azure.com/dnceng/public/_packaging/machinelearning-testdata/nuget/v3/index.json; + https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/nuget/v3/index.json; diff --git a/build/Dependencies.props b/build/Dependencies.props index 3b56411602..fab224a3b1 100644 --- a/build/Dependencies.props +++ b/build/Dependencies.props @@ -16,7 +16,7 @@ 3.10.1 2.2.3 2.1.0 - 1.5.1 + 1.5.2 0.0.0.9 2.1.3 4.5.0 From 83868d985227cbabb7d770a6f01558448c9a2bb2 Mon Sep 17 00:00:00 2001 From: Antonio Velazquez Date: Fri, 16 Oct 2020 16:53:06 -0700 Subject: [PATCH 2/4] Remove prerelease feed --- Directory.Build.props | 1 - 1 file changed, 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 0bfc9fb656..5ef129c098 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -25,7 +25,6 @@ https://dotnet.myget.org/F/roslyn-analyzers/api/v3/index.json; https://pkgs.dev.azure.com/dnceng/public/_packaging/MachineLearning/nuget/v3/index.json; https://pkgs.dev.azure.com/dnceng/public/_packaging/machinelearning-testdata/nuget/v3/index.json; - https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/nuget/v3/index.json; From 466bc333a83d1dabdd76ec1cb8604838da4ceb3d Mon Sep 17 00:00:00 2001 From: Antonio Velazquez Date: Fri, 16 Oct 2020 16:56:35 -0700 Subject: [PATCH 3/4] Updated docs --- src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs b/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs index 76ceb81ef1..0bb8f67f3a 100644 --- a/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs +++ b/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs @@ -739,7 +739,7 @@ public NamedOnnxValue GetNamedOnnxValue() /// /// To run on a GPU, use the /// NuGet package [Microsoft.ML.OnnxRuntime.Gpu](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.Gpu/) instead of the Microsoft.ML.OnnxRuntime nuget (which is for CPU processing). Microsoft.ML.OnnxRuntime.Gpu - /// requires a [CUDA supported GPU](https://developer.nvidia.com/cuda-gpus#compute), the [CUDA 10.1 Toolkit](https://developer.nvidia.com/cuda-downloads), and [cuDNN 7.6.5](https://developer.nvidia.com/cudnn) (as indicated on [Onnxruntime's documentation](https://github.com/Microsoft/onnxruntime#default-gpu-cuda)). + /// requires a [CUDA supported GPU](https://developer.nvidia.com/cuda-gpus#compute), the [CUDA 10.2 Toolkit](https://developer.nvidia.com/cuda-downloads), and [cuDNN 8.0.3](https://developer.nvidia.com/cudnn) (as indicated on [Onnxruntime's documentation](https://github.com/Microsoft/onnxruntime#system-requirements)). /// When creating the estimator through [ApplyOnnxModel](xref:Microsoft.ML.OnnxCatalog.ApplyOnnxModel*), set the parameter 'gpuDeviceId' to a valid non-negative integer. Typical device ID values are 0 or 1. If the GPU device isn't found but 'fallbackToCpu = true' then the estimator will run on the CPU. If the GPU device isn't found but 'fallbackToCpu = false' then the estimator will throw an exception /// /// The inputs and outputs of the ONNX models must be Tensor type. Sequence and Maps are not yet supported. From 47bfab02c0ef960ce95df03cf5d45b33b1437eea Mon Sep 17 00:00:00 2001 From: Antonio Velazquez Date: Mon, 19 Oct 2020 15:37:35 -0700 Subject: [PATCH 4/4] Update doc --- src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs b/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs index 0bb8f67f3a..878fabf6c5 100644 --- a/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs +++ b/src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs @@ -727,7 +727,7 @@ public NamedOnnxValue GetNamedOnnxValue() /// | Does this estimator need to look at the data to train its parameters? | No | /// | Input column data type | Known-sized vector of or types | /// | Output column data type | As specified by the ONNX model | - /// | Required NuGet in addition to Microsoft.ML | Microsoft.ML.OnnxTransformer (always), either Microsoft.ML.OnnxRuntime 1.3.0 (for CPU processing) or Microsoft.ML.OnnxRuntime.Gpu 1.3.0 (for GPU processing if GPU is available) | + /// | Required NuGet in addition to Microsoft.ML | Microsoft.ML.OnnxTransformer (always), either Microsoft.ML.OnnxRuntime 1.5.2 (for CPU processing) or Microsoft.ML.OnnxRuntime.Gpu 1.5.2 (for GPU processing if GPU is available) | /// | Exportable to ONNX | No | /// /// To create this estimator use the following APIs: