Skip to content

Instantly share code, notes, and snippets.

@Belgian-Coder
Last active January 12, 2019 20:46
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 Belgian-Coder/0c8cc3107973c32965c0d46844a5bbf4 to your computer and use it in GitHub Desktop.
Save Belgian-Coder/0c8cc3107973c32965c0d46844a5bbf4 to your computer and use it in GitHub Desktop.
Ordina-ML.Net_Recommender_System
using Microsoft.ML.Data;
namespace BookRecommenderShared.Models
{
public class BookRatingPrediction
{
/*
* A machine learning label is the actual data field to be calculated.
*/
[ColumnName("Label")]
public float Label;
/*
* Score defines the predicted value by the model
*/
[ColumnName("Score")]
public float Score;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment