Skip to content

Instantly share code, notes, and snippets.

@Belgian-Coder
Last active January 12, 2019 20:46
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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