BotSharp/BotSharp.NLP/Sentence.cs

20 lines
391 B
C#
Raw Normal View History

using BotSharp.NLP.Tokenize;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP
{
public class Sentence
{
public List<Token> Words { get; set; }
2018-09-09 01:51:16 +00:00
/// <summary>
/// Allow multiple classification
/// </summary>
public List<String> Labels { get; set; }
public String Text { get; set; }
}
}