Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created December 3, 2019 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/3dc5087c37f3c7a4cf1f304acddc8b91 to your computer and use it in GitHub Desktop.
Save icebeam7/3dc5087c37f3c7a4cf1f304acddc8b91 to your computer and use it in GitHub Desktop.
MovieRecommender: MovieRating.cs
using Microsoft.ML.Data;
namespace MovieRecommender.Models
{
public class MovieRating
{
[LoadColumn(0)]
public float userId;
[LoadColumn(1)]
public float movieId;
[LoadColumn(2)]
public float Label;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment