BotSharp/BotSharp.Core/Engines/NERs/DucklingEntityRecognizer.cs

13 lines
295 B
C#
Raw Normal View History

2018-08-11 18:17:15 +00:00
using BotSharp.Core.Abstractions;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.NERs
{
public class DucklingEntityRecognizer : INlpNer
{
public List<OntologyEnum> Ontologies => throw new NotImplementedException();
}
}