Esempio n. 1
0
 private static void Test(FastTextWrapper fastText)
 {
     var labels      = fastText.GetLabels();
     var prediction  = fastText.PredictSingle("Can I use a larger crockpot than the recipe calls for?");
     var predictions = fastText.PredictMultiple("Can I use a larger crockpot than the recipe calls for?", 4);
     var vector      = fastText.GetSentenceVector("Can I use a larger crockpot than the recipe calls for?");
 }
Esempio n. 2
0
 private static void LoadModel()
 {
     using (var fastText = new FastTextWrapper())
     {
         fastText.LoadModel(@"D:\__Models\cooking.bin");
         var labels      = fastText.GetLabels();
         var prediction  = fastText.PredictSingle("Can I use a larger crockpot than the recipe calls for?");
         var predictions = fastText.PredictMultiple("Can I use a larger crockpot than the recipe calls for?", 4);
         var vector      = fastText.GetSentenceVector("Can I use a larger crockpot than the recipe calls for?");
     }
 }