BotSharp/BotSharp.MachineLearning/NLP/NlpEntity.cs

23 lines
436 B
C#
Raw Normal View History

2018-06-13 22:17:35 +00:00
using System;
using System.Collections.Generic;
using System.Text;
2018-07-17 16:22:31 +00:00
namespace BotSharp.MachineLearning.NLP
2018-06-13 22:17:35 +00:00
{
public class NlpEntity
{
/// <summary>
/// Entity label
/// </summary>
public string Entity { get; set; }
public string Value { get; set; }
public int Start { get; set; }
public decimal Confidence { get; set; }
public int End { get; set; }
}
}