BotSharp/BotSharp.Core/Engines/Jieba.NET/FinalSeg/IFinalSeg.cs
Oceania2018 6019d9268f 1. Embed jieba.NET source code.
2. Remove publish profile.
3. Fix docker build
2018-09-21 06:02:58 -05:00

13 lines
284 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace JiebaNet.Segmenter.FinalSeg
{
/// <summary>
/// 在词典切分之后使用此接口进行切分默认实现为HMM方法。
/// </summary>
public interface IFinalSeg
{
IEnumerable<string> Cut(string sentence);
}
}