BotSharp/BotSharp.Core/Abstractions/INlpNer.cs

12 lines
217 B
C#
Raw Normal View History

2018-10-03 01:44:11 +00:00
using System;
2018-08-11 18:17:15 +00:00
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Abstractions
{
public interface INlpNer : INlpPipeline
2018-08-11 18:17:15 +00:00
{
2018-10-03 01:44:11 +00:00
//List<OntologyEnum> Ontologies { get; }
2018-08-11 18:17:15 +00:00
}
}