BotSharp/BotSharp.Core/Engines/TextClassificationResult.cs
2018-08-28 16:45:56 -05:00

16 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class TextClassificationResult
{
public String Classifier { get; set; }
public String Label { get; set; }
public Decimal Confidence { get; set; }
}
}