BotSharp/BotSharp.Core/Engines/TextClassificationResult.cs

16 lines
299 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class TextClassificationResult
{
2018-08-28 21:45:56 +00:00
public String Classifier { get; set; }
public String Label { get; set; }
2018-10-21 14:03:12 +00:00
public double Confidence { get; set; }
}
}