Skip to content
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

Export to ONNX and cross-platform command-line tool to script ML.NET training and inference #248

Merged
merged 29 commits into from
Jun 6, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1b78603
Export to ONNX and Maml cross-platform executable
codemzs May 28, 2018
1508cd4
misc.
codemzs May 29, 2018
c6763f3
PR feedback.
codemzs May 30, 2018
b04ef49
PR feedback.
codemzs May 30, 2018
eaa8e3a
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 30, 2018
de02e1e
resolve merge issues.
codemzs May 30, 2018
6f4434e
cleanup.
codemzs May 30, 2018
6c97416
cleanup.
codemzs May 30, 2018
534fcd1
PR feedback.
codemzs May 30, 2018
caebed0
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 30, 2018
692b526
update test baselines.
codemzs May 30, 2018
6c92033
cleanup.
codemzs May 30, 2018
e466157
cleanup.
codemzs May 30, 2018
5a04795
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 31, 2018
8ef9b3f
PR feedback.
codemzs May 31, 2018
64cdb80
PR feedback.
codemzs May 31, 2018
3276dd3
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Jun 1, 2018
c6bc1c6
PR feedback.
codemzs Jun 1, 2018
17a738a
update baselines and regenerate csharp APIs.
codemzs Jun 1, 2018
5090d24
Add link to the commit in ONNX MD file.
codemzs Jun 1, 2018
4cfed38
PR feedback.
codemzs Jun 1, 2018
0a13ad7
cleanup.
codemzs Jun 1, 2018
5bea824
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Jun 4, 2018
2ab729f
Add missing attributes to ONNX model.
codemzs Jun 4, 2018
faf528c
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Jun 5, 2018
3dfd81f
cleanup.
codemzs Jun 5, 2018
1865825
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Jun 6, 2018
3562331
add more commands.
codemzs Jun 6, 2018
d20f1a4
cleanup.
codemzs Jun 6, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Microsoft.ML.sln
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Microsoft.ML.Parquet", "Mic
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.Benchmarks", "test\Microsoft.ML.Benchmarks\Microsoft.ML.Benchmarks.csproj", "{7A9DB75F-2CA5-4184-9EF5-1F17EB39483F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.MamlExec", "src\Microsoft.ML.MamlExec\Microsoft.ML.MamlExec.csproj", "{4217964C-891C-43DD-9E20-E77A5567DCE4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -202,6 +204,10 @@ Global
{7A9DB75F-2CA5-4184-9EF5-1F17EB39483F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A9DB75F-2CA5-4184-9EF5-1F17EB39483F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7A9DB75F-2CA5-4184-9EF5-1F17EB39483F}.Release|Any CPU.Build.0 = Release|Any CPU
{4217964C-891C-43DD-9E20-E77A5567DCE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4217964C-891C-43DD-9E20-E77A5567DCE4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4217964C-891C-43DD-9E20-E77A5567DCE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4217964C-891C-43DD-9E20-E77A5567DCE4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -236,6 +242,7 @@ Global
{DEC8F776-49F7-4D87-836C-FE4DC057D08C} = {D3D38B03-B557-484D-8348-8BADEE4DF592}
{6C95FC87-F5F2-4EEF-BB97-567F2F5DD141} = {D3D38B03-B557-484D-8348-8BADEE4DF592}
{7A9DB75F-2CA5-4184-9EF5-1F17EB39483F} = {AED9C836-31E3-4F3F-8ABC-929555D3F3C4}
{4217964C-891C-43DD-9E20-E77A5567DCE4} = {09EADF06-BE25-4228-AB53-95AE3E15B530}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {41165AF1-35BB-4832-A189-73060F82B01D}
Expand Down
Loading