BotSharp/BotSharp.MachineLearning/NLP/NlpToken.cs
2018-08-07 17:13:55 -05:00

23 lines
487 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.MachineLearning.NLP
{
public class NlpToken
{
public string Text { get; set; }
public int Offset { get; set; }
public string Pos { get; set; }
public string Tag { get; set; }
public string Lemma { get; set; }
public int End
{
get
{
return Offset + Text.Length;
}
}
}
}