move ner.cs and crfutils.cs from Engine to Machine Learning
This commit is contained in:
parent
bba58f4510
commit
f01016dab5
|
|
@ -47,7 +47,7 @@ namespace BotSharp.Core.Engines.CRFsuite
|
|||
sw.Close();
|
||||
fs.Close();
|
||||
|
||||
new Ner().NerStart();
|
||||
new MachineLearning.CRFsuite.Ner().NerStart();
|
||||
|
||||
Runcmd();
|
||||
|
||||
|
|
@ -132,7 +132,7 @@ namespace BotSharp.Core.Engines.CRFsuite
|
|||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public class TrainingData
|
||||
{
|
||||
public String Token { get; set; }
|
||||
|
|
|
|||
|
|
@ -1,10 +1,3 @@
|
|||
using BotSharp.Core.Abstractions;
|
||||
using BotSharp.Core.Agents;
|
||||
using BotSharp.MachineLearning.NLP;
|
||||
using EntityFrameworkCore.BootKit;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -13,7 +6,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace BotSharp.Core.Engines.CRFsuite
|
||||
namespace BotSharp.MachineLearning.CRFsuite
|
||||
{
|
||||
public class Crfutils
|
||||
{
|
||||
|
|
@ -1,10 +1,3 @@
|
|||
using BotSharp.Core.Abstractions;
|
||||
using BotSharp.Core.Agents;
|
||||
using BotSharp.MachineLearning.NLP;
|
||||
using EntityFrameworkCore.BootKit;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -12,7 +5,7 @@ using System.IO;
|
|||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace BotSharp.Core.Engines.CRFsuite
|
||||
namespace BotSharp.MachineLearning.CRFsuite
|
||||
{
|
||||
public class Ner
|
||||
{
|
||||
Loading…
Reference in a new issue