From f0fcd401810a961aaff18a910ea9d8581f0cee62 Mon Sep 17 00:00:00 2001 From: Sean Gan <101493226+SeanEngineering@users.noreply.github.com> Date: Wed, 13 Sep 2023 19:31:18 +1000 Subject: [PATCH 1/4] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index a01c14aa0..d229eb2f8 100644 --- a/README.md +++ b/README.md @@ -199,3 +199,11 @@ For more information, see the [.NET Foundation Code of Conduct](https://dotnetfo # License [ML.NET Samples](https://github.com/dotnet/machinelearning-samples) are licensed under the [MIT license](LICENSE). + +# Mac configuration for mlnet +When you have mlnet installed +```zsh + nano ~/.zshrc + export PATH=~/.dotnet/tools/:$PATH #Add theis to zshrc file, then ctrl + o, enter, ctrl + x + source ~/.zhrc #Then reload +``` From 298aaefb6be744df359ad5c62a898c6d9f7ebd6b Mon Sep 17 00:00:00 2001 From: Sean Gan <101493226+SeanEngineering@users.noreply.github.com> Date: Wed, 13 Sep 2023 19:32:04 +1000 Subject: [PATCH 2/4] Update README.md --- samples/CLI/BinaryClassification_CLI/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/samples/CLI/BinaryClassification_CLI/README.md b/samples/CLI/BinaryClassification_CLI/README.md index 151f1da8b..a0d421226 100644 --- a/samples/CLI/BinaryClassification_CLI/README.md +++ b/samples/CLI/BinaryClassification_CLI/README.md @@ -27,6 +27,12 @@ Now run the following ML.NET CLI command: > mlnet auto-trainĀ --task binary-classification --dataset wikiDetoxAnnotated40kRows.tsv --label-column-name Label --max-exploration-time 180 ``` +The below command can be used in mac terminal +```zsh + mlnet classification --dataset wikiDetoxAnnotated40kRows.tsv --label-col Label --train-time 180 +``` + + You will get a similar command execution like the following: ![CLI running](images/cli-running.png) From b2a6ec5049970c989490542ad49b514589f857cb Mon Sep 17 00:00:00 2001 From: Sean Gan <101493226+SeanEngineering@users.noreply.github.com> Date: Wed, 13 Sep 2023 19:38:05 +1000 Subject: [PATCH 3/4] Update README.md --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index d229eb2f8..a01c14aa0 100644 --- a/README.md +++ b/README.md @@ -199,11 +199,3 @@ For more information, see the [.NET Foundation Code of Conduct](https://dotnetfo # License [ML.NET Samples](https://github.com/dotnet/machinelearning-samples) are licensed under the [MIT license](LICENSE). - -# Mac configuration for mlnet -When you have mlnet installed -```zsh - nano ~/.zshrc - export PATH=~/.dotnet/tools/:$PATH #Add theis to zshrc file, then ctrl + o, enter, ctrl + x - source ~/.zhrc #Then reload -``` From dd345e9c2ea262c79cc399e793f5babf242296d6 Mon Sep 17 00:00:00 2001 From: Sean Gan <101493226+SeanEngineering@users.noreply.github.com> Date: Wed, 13 Sep 2023 19:39:24 +1000 Subject: [PATCH 4/4] Update README.md --- samples/CLI/BinaryClassification_CLI/README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/samples/CLI/BinaryClassification_CLI/README.md b/samples/CLI/BinaryClassification_CLI/README.md index a0d421226..11a488f8a 100644 --- a/samples/CLI/BinaryClassification_CLI/README.md +++ b/samples/CLI/BinaryClassification_CLI/README.md @@ -24,15 +24,9 @@ From command-prompt (either PowerShell, Bash or CMD) move to the 'BinaryClassifi Now run the following ML.NET CLI command: ```console -> mlnet auto-trainĀ --task binary-classification --dataset wikiDetoxAnnotated40kRows.tsv --label-column-name Label --max-exploration-time 180 +> mlnet classification --dataset wikiDetoxAnnotated40kRows.tsv --label-col Label --train-time 180 ``` -The below command can be used in mac terminal -```zsh - mlnet classification --dataset wikiDetoxAnnotated40kRows.tsv --label-col Label --train-time 180 -``` - - You will get a similar command execution like the following: ![CLI running](images/cli-running.png)