move ner.cs and crfutils.cs from Engine to Machine Learning

This commit is contained in:
Bolo 2018-08-01 16:40:51 -05:00
parent bba58f4510
commit f01016dab5
3 changed files with 4 additions and 18 deletions

View file

@ -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; }

View file

@ -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
{

View file

@ -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
{