-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add OnnxTransform for scoring Onnx 1.2 models - integrates Microsoft.ML.Scoring/Sonoma Library #942
Changes from 22 commits
d67eb57
1402d19
d7aefce
b5482df
40f857e
46d7821
4bf00de
dd956be
e61b730
6fdd04e
e597068
fd27eec
2778577
27de2b0
4d94c43
84334ed
4b958b1
7ff3012
d47516e
51b3c42
b9af85e
8c880f0
d554822
3069de6
ca61e26
d95e323
24d34b4
0182ca1
cc14268
aa17a35
4c7821f
316a5a1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,13 @@ | ||||||||||||||
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Pack"> | ||||||||||||||
|
||||||||||||||
<PropertyGroup> | ||||||||||||||
<TargetFramework>netstandard2.0</TargetFramework> | ||||||||||||||
<PackageDescription>ML.NET component for Sonoma</PackageDescription> | ||||||||||||||
</PropertyGroup> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As discussed in the standup meeting, we want to keep <VersionSuffix Condition="'$(StabilizePackageVersion)' == 'true'">$(PreReleaseLabel)</VersionSuffix> Which will ensure that the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See machinelearning/Directory.Build.props Lines 61 to 66 in 9258be2
$(StabilizePackageVersion) to true for the build. #Resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was another discussion post this mornings call. The plan is to use this dev nuget for the bug-bash, and assuming bugs are fixed by Thursday and sonoma goes live before tuesday, we'll switch to point to the stable release of the nuget. build/Dependencies.props: 1.0.4-dev48825 In reply to: 220290306 [](ancestors = 220290306) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was another discussion post this mornings call. The plan is to use this dev nuget for the bug-bash, and assuming bugs are fixed by Thursday and sonoma goes live before tuesday, we'll switch to point to the stable release of the nuget. build/Dependencies.props: 1.0.4-dev48825 In reply to: 220290881 [](ancestors = 220290881) |
||||||||||||||
|
||||||||||||||
<ItemGroup> | ||||||||||||||
<ProjectReference Include="../Microsoft.ML/Microsoft.ML.nupkgproj" /> | ||||||||||||||
<PackageReference Include="Microsoft.ML.Scoring" Version="$(MicrosoftMLScoring)"/> | ||||||||||||||
</ItemGroup> | ||||||||||||||
|
||||||||||||||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<Project DefaultTargets="Pack"> | ||
|
||
<Import Project="Microsoft.ML.OnnxTransform.nupkgproj" /> | ||
|
||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<IncludeInPackage>Microsoft.ML.OnnxTransform</IncludeInPackage> | ||
<DefineConstants>CORECLR</DefineConstants> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one is unnecessary #Closed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Microsoft.ML.Core\Microsoft.ML.Core.csproj" /> | ||
<ProjectReference Include="..\Microsoft.ML.Data\Microsoft.ML.Data.csproj" /> | ||
<!--ProjectReference Include="..\Microsoft.ML.ImageAnalytics\Microsoft.ML.ImageAnalytics.csproj" /--> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [](start = 4, length = 101) Is it possible to just clean things up like this? #Resolved There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [](start = 3, length = 102) Delete it. #Closed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
<PackageReference Include="Microsoft.ML.Scoring" Version="$(MicrosoftMLScoring)" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<Service Include="{B5B31292-0FED-4ACC-9879-329728881CF3}" /> | ||
</ItemGroup> | ||
jignparm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
</Project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is Sonoma a public name? #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replaced with microsoft.ml.scoring
In reply to: 220280263 [](ancestors = 220280263)