├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── data_suggestion.md │ ├── feature_request.md │ ├── getting_started_bug.md │ └── z_ally_report.md ├── issue_template.md ├── ml-dotnet-model-builder.gif └── workflows │ └── stale.yml ├── .gitignore ├── CODE-OF-CONDUCT.md ├── Dockerfiles ├── README.md ├── mlnetcli │ └── Dockerfile ├── onedal │ └── Dockerfile └── slim │ └── Dockerfile ├── LICENSE ├── LICENSE-CODE ├── README.md ├── docs ├── process │ └── IssueProcess.md └── release-notes │ ├── 16.13.0.md │ ├── 16.13.10.md │ ├── 16.13.6.md │ ├── 16.13.9.md │ ├── 16.14.0.md │ ├── 16.14.2.md │ ├── 16.14.3.md │ ├── 16.14.4.md │ ├── 16.15.0 and 17.15.0.md │ ├── 16.6.0.2130907.md │ ├── 16.6.3.2136603.md │ ├── 16.7.3.2143002.md │ ├── 16.7.6.2150402.md │ ├── 16.9.1.md │ ├── 16.9.2.md │ ├── 16.9.3.md │ ├── 17.16.0 and 16.16.0.md │ ├── 17.17.0 and 16.17.0.md │ └── 17.18.0 and 16.18.0.md ├── file-an-issue.md ├── gpu-instructions.md └── troubleshooting ├── ModelBuilderFAQ.md └── ModelBuilderTroubleshooting.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/data_suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/ISSUE_TEMPLATE/data_suggestion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/getting_started_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/ISSUE_TEMPLATE/getting_started_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/z_ally_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/ISSUE_TEMPLATE/z_ally_report.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/ml-dotnet-model-builder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/ml-dotnet-model-builder.gif -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Dockerfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/Dockerfiles/README.md -------------------------------------------------------------------------------- /Dockerfiles/mlnetcli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/Dockerfiles/mlnetcli/Dockerfile -------------------------------------------------------------------------------- /Dockerfiles/onedal/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/sdk:6.0 2 | 3 | ENV MLNET_BACKEND="ONEDAL" -------------------------------------------------------------------------------- /Dockerfiles/slim/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/sdk:6.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/README.md -------------------------------------------------------------------------------- /docs/process/IssueProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/process/IssueProcess.md -------------------------------------------------------------------------------- /docs/release-notes/16.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.13.0.md -------------------------------------------------------------------------------- /docs/release-notes/16.13.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.13.10.md -------------------------------------------------------------------------------- /docs/release-notes/16.13.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.13.6.md -------------------------------------------------------------------------------- /docs/release-notes/16.13.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.13.9.md -------------------------------------------------------------------------------- /docs/release-notes/16.14.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.14.0.md -------------------------------------------------------------------------------- /docs/release-notes/16.14.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.14.2.md -------------------------------------------------------------------------------- /docs/release-notes/16.14.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.14.3.md -------------------------------------------------------------------------------- /docs/release-notes/16.14.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.14.4.md -------------------------------------------------------------------------------- /docs/release-notes/16.15.0 and 17.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.15.0 and 17.15.0.md -------------------------------------------------------------------------------- /docs/release-notes/16.6.0.2130907.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.6.0.2130907.md -------------------------------------------------------------------------------- /docs/release-notes/16.6.3.2136603.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.6.3.2136603.md -------------------------------------------------------------------------------- /docs/release-notes/16.7.3.2143002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.7.3.2143002.md -------------------------------------------------------------------------------- /docs/release-notes/16.7.6.2150402.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.7.6.2150402.md -------------------------------------------------------------------------------- /docs/release-notes/16.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.9.1.md -------------------------------------------------------------------------------- /docs/release-notes/16.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.9.2.md -------------------------------------------------------------------------------- /docs/release-notes/16.9.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/16.9.3.md -------------------------------------------------------------------------------- /docs/release-notes/17.16.0 and 16.16.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/17.16.0 and 16.16.0.md -------------------------------------------------------------------------------- /docs/release-notes/17.17.0 and 16.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/17.17.0 and 16.17.0.md -------------------------------------------------------------------------------- /docs/release-notes/17.18.0 and 16.18.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/docs/release-notes/17.18.0 and 16.18.0.md -------------------------------------------------------------------------------- /file-an-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/file-an-issue.md -------------------------------------------------------------------------------- /gpu-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/gpu-instructions.md -------------------------------------------------------------------------------- /troubleshooting/ModelBuilderFAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/troubleshooting/ModelBuilderFAQ.md -------------------------------------------------------------------------------- /troubleshooting/ModelBuilderTroubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/machinelearning-modelbuilder/HEAD/troubleshooting/ModelBuilderTroubleshooting.md --------------------------------------------------------------------------------