You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/machine-learning/tutorials/movie-recommmendation.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,15 @@ title: Use ML.NET in a movie recommendation scenario
3
3
description: Discover how to use ML.NET in a recommendation scenario to recommend movies to users.
4
4
author: briacht
5
5
ms.author: johalex
6
-
ms.date: 03/08/2019
6
+
ms.date: 04/25/2019
7
7
ms.custom: mvc
8
8
ms.topic: tutorial
9
9
#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.
10
10
---
11
11
12
12
# Tutorial: Create a Movie Recommender with ML.NET
13
13
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.
15
15
16
16
In this tutorial, you learn how to:
17
17
> [!div class="checklist"]
@@ -24,7 +24,7 @@ In this tutorial, you learn how to:
24
24
> [!NOTE]
25
25
> 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).
26
26
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).
28
28
29
29
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.
30
30
@@ -57,10 +57,10 @@ There are several ways to approach recommendation problems, such as recommending
57
57
58
58
3. Install the **Microsoft.ML** and **Microsoft.ML.Recommender** NuGet Packages:
59
59
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**.
61
61
62
62
> [!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**.
64
64
65
65
4. Add the following `using` statements at the top of your *Program.cs* file:
0 commit comments