BotSharp/BotSharp.Platform.Models/AiResponse/TextClassificationResult.cs

18 lines
355 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-10-26 02:30:59 +00:00
namespace BotSharp.Platform.Models.AiResponse
{
public class TextClassificationResult
{
2018-08-28 21:45:56 +00:00
public String Classifier { get; set; }
public String Label { get; set; }
2018-10-26 02:30:59 +00:00
public string Text { get; set; }
2018-10-21 14:03:12 +00:00
public double Confidence { get; set; }
}
}