BotSharp/BotSharp.NLP/Sentence.cs
2018-09-08 20:51:16 -05:00

20 lines
391 B
C#

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; }
/// <summary>
/// Allow multiple classification
/// </summary>
public List<String> Labels { get; set; }
public String Text { get; set; }
}
}