BotSharp/BotSharp.NLP/Sentence.cs

19 lines
343 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 03:59:01 +00:00
public String Label { get; set; }
public String Text { get; set; }
2018-09-11 03:35:33 +00:00
public double[] Vector { get; set; }
}
}