BotSharp/BotSharp.Core/Engines/TextClassificationResult.cs
2018-10-21 09:03:12 -05:00

16 lines
299 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 double Confidence { get; set; }
}
}