From 5fa114128bfbf3a4550fdc51722a11e075dcbaaa Mon Sep 17 00:00:00 2001 From: Gleb Krivosheev Date: Tue, 8 May 2018 00:11:45 -0700 Subject: [PATCH 1/3] Fix link to example file in readme.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c8be04931..891bfc65e2 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,8 @@ For more information, see the [.NET Foundation Code of Conduct](https://dotnetfo ## Examples -Here's an example of code to train a model to predict sentiment from text samples. (You can see the complete sample [here](https://github.com/dotnet/machinelearning/blob/master/test/Microsoft.ML.Tests/Scenarios/Scenario3_SentimentPrediction.cs)): +Here's an example of code to train a model to predict sentiment from text samples. +(You can see the complete sample [here](https://github.com/dotnet/machinelearning/blob/master/test/Microsoft.ML.Tests/Scenarios/SentimentPredictionTests.cs)): ```C# var pipeline = new LearningPipeline(); From 46a3e730afb33be061a993cdef6002ac030b8cc8 Mon Sep 17 00:00:00 2001 From: Gleb Krivosheev Date: Tue, 8 May 2018 07:57:46 -0700 Subject: [PATCH 2/3] replaced URLs with relative paths. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 891bfc65e2..dc5408a8ca 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Along with these ML capabilities this first release of ML.NET also brings the fi ML.NET runs on Windows, Linux, and macOS - any platform where 64 bit [.NET Core](https://github.com/dotnet/core) or later is available. -The current release is 0.1. Check out the [release notes](https://github.com/dotnet/machinelearning/blob/master/Documentation/release-notes/0.1/release-0.1.md). +The current release is 0.1. Check out the [release notes](blob/master/Documentation/release-notes/0.1/release-0.1.md). First ensure you have installed [.NET Core 2.0](https://www.microsoft.com/net/learn/get-started) or later. ML.NET also works on the .NET Framework. Note that ML.NET currently must run in a 64 bit process. @@ -56,7 +56,7 @@ For more information, see the [.NET Foundation Code of Conduct](https://dotnetfo ## Examples Here's an example of code to train a model to predict sentiment from text samples. -(You can see the complete sample [here](https://github.com/dotnet/machinelearning/blob/master/test/Microsoft.ML.Tests/Scenarios/SentimentPredictionTests.cs)): +(You can see the complete sample [here](blob/master/test/Microsoft.ML.Tests/Scenarios/SentimentPredictionTests.cs)): ```C# var pipeline = new LearningPipeline(); From 1af74977fba0e435b407e79d4cd4a99e7084c436 Mon Sep 17 00:00:00 2001 From: Gleb Krivosheev Date: Tue, 8 May 2018 08:10:14 -0700 Subject: [PATCH 3/3] fixed link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc5408a8ca..eb96b1488b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Along with these ML capabilities this first release of ML.NET also brings the fi ML.NET runs on Windows, Linux, and macOS - any platform where 64 bit [.NET Core](https://github.com/dotnet/core) or later is available. -The current release is 0.1. Check out the [release notes](blob/master/Documentation/release-notes/0.1/release-0.1.md). +The current release is 0.1. Check out the [release notes](Documentation/release-notes/0.1/release-0.1.md). First ensure you have installed [.NET Core 2.0](https://www.microsoft.com/net/learn/get-started) or later. ML.NET also works on the .NET Framework. Note that ML.NET currently must run in a 64 bit process. @@ -56,7 +56,7 @@ For more information, see the [.NET Foundation Code of Conduct](https://dotnetfo ## Examples Here's an example of code to train a model to predict sentiment from text samples. -(You can see the complete sample [here](blob/master/test/Microsoft.ML.Tests/Scenarios/SentimentPredictionTests.cs)): +(You can see the complete sample [here](test/Microsoft.ML.Tests/Scenarios/SentimentPredictionTests.cs)): ```C# var pipeline = new LearningPipeline();