Skip to content

Commit 3ece37d

Browse files
authored
Update Movie Recommender Tutorial to v1.0.0-preview (#12036)
* Update Movie Recommender to ML.Net 1.0.0-preview * Update Visual Studio
1 parent 4935653 commit 3ece37d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/machine-learning/tutorials/movie-recommmendation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ title: Use ML.NET in a movie recommendation scenario
33
description: Discover how to use ML.NET in a recommendation scenario to recommend movies to users.
44
author: briacht
55
ms.author: johalex
6-
ms.date: 03/08/2019
6+
ms.date: 04/25/2019
77
ms.custom: mvc
88
ms.topic: tutorial
99
#Customer intent: As a developer, I want to use ML.NET to apply a recommendation learning algorithm so that I can understand how to recommend items based on a user's history.
1010
---
1111

1212
# Tutorial: Create a Movie Recommender with ML.NET
1313

14-
This sample tutorial illustrates using ML.NET to build a movie recommender via a .NET Core console application using C# in Visual Studio 2017.
14+
This sample tutorial illustrates using ML.NET to build a movie recommender via a .NET Core console application using C# in Visual Studio 2019.
1515

1616
In this tutorial, you learn how to:
1717
> [!div class="checklist"]
@@ -24,7 +24,7 @@ In this tutorial, you learn how to:
2424
> [!NOTE]
2525
> This topic refers to ML.NET, which is currently in Preview, and material may be subject to change. For more information, visit [the ML.NET introduction](https://www.microsoft.com/net/learn/apps/machine-learning-and-ai/ml-dotnet).
2626
27-
This tutorial and related sample are currently using **ML.NET version 0.11**. For more information, see the release notes at the [dotnet/machinelearning GitHub repo](https://github.com/dotnet/machinelearning/tree/master/docs/release-notes).
27+
This tutorial and related sample are currently using **ML.NET version 1.0.0-preview and 0.12.0-preview**. For more information, see the release notes at the [dotnet/machinelearning GitHub repo](https://github.com/dotnet/machinelearning/tree/master/docs/release-notes).
2828

2929
You can find the source code for this tutorial at the [dotnet/samples](https://github.com/dotnet/samples/tree/master/machine-learning/tutorials/MovieRecommendation) repository.
3030

@@ -57,10 +57,10 @@ There are several ways to approach recommendation problems, such as recommending
5757

5858
3. Install the **Microsoft.ML** and **Microsoft.ML.Recommender** NuGet Packages:
5959

60-
In **Solution Explorer**, right-click the project and select **Manage NuGet Packages**. Choose "nuget.org" as the Package source, select the **Browse** tab, search for **Microsoft.ML**, select that package in the list, and select the **Install** button. Select the **OK** button on the **Preview Changes** dialog and then select the **I Accept** button on the **License Acceptance** dialog if you agree with the license terms for the packages listed. Repeat these steps for **Microsoft.ML.Recommender**.
60+
In **Solution Explorer**, right-click the project and select **Manage NuGet Packages**. Choose "nuget.org" as the Package source, select the **Browse** tab, search for **Microsoft.ML**, select the **1.0.0-preview** package in the list, and select the **Install** button. Select the **OK** button on the **Preview Changes** dialog and then select the **I Accept** button on the **License Acceptance** dialog if you agree with the license terms for the packages listed. Repeat these steps for **Microsoft.ML.Recommender v0.12.0-preview**.
6161

6262
> [!NOTE]
63-
> This tutorial uses **Microsoft.ML v0.11.0** and **Microsoft.ML.Recommender v0.11.0**.
63+
> This tutorial uses **Microsoft.ML v1.0.0-preview** and **Microsoft.ML.Recommender v0.12.0-preview**.
6464
6565
4. Add the following `using` statements at the top of your *Program.cs* file:
6666

0 commit comments

Comments
 (0)