2018-08-11 18:17:15 +00:00
|
|
|
|
using BotSharp.Core.Abstractions;
|
2018-08-13 04:14:02 +00:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2018-08-11 18:17:15 +00:00
|
|
|
|
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();
|
2018-08-13 04:14:02 +00:00
|
|
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
|
|
|
|
|
public PipeSettings Settings { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
2018-08-11 18:17:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|