Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created May 30, 2019 16:27
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 juucustodio/a90a9d34c631eda5266ad3d066549b6c to your computer and use it in GitHub Desktop.
Save juucustodio/a90a9d34c631eda5266ad3d066549b6c to your computer and use it in GitHub Desktop.
Example of how to use framework de Machine Learning ML.NET in your Xamarin.Forms applications - http://julianocustodio.com/utilizando-ml-net-em-aplicacoes-xamarin-forms
namespace DemoCommentary
{
public class PredictionResult
{
public bool Predicition { get; set; }
public float Probability { get; set; }
public float Score { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment