BotSharp/BotSharp.Core/Engines/TextClassificationResult.cs

16 lines
300 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; }
public Decimal Confidence { get; set; }
}
}