2018-08-11 18:17:15 +00:00
|
|
|
|
using BotSharp.Core.Engines.NERs;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Abstractions
|
|
|
|
|
|
{
|
2018-08-13 04:14:02 +00:00
|
|
|
|
public interface INlpNer : INlpPipeline
|
2018-08-11 18:17:15 +00:00
|
|
|
|
{
|
|
|
|
|
|
List<OntologyEnum> Ontologies { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|