2018-06-13 12:23:03 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2018-08-08 21:39:00 +00:00
|
|
|
|
using System.IO;
|
2018-06-14 15:03:01 +00:00
|
|
|
|
using System.Linq;
|
2018-06-13 12:23:03 +00:00
|
|
|
|
using System.Text;
|
2018-08-08 21:39:00 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2018-06-14 15:03:01 +00:00
|
|
|
|
using BotSharp.Core.Abstractions;
|
2018-06-15 17:39:24 +00:00
|
|
|
|
using BotSharp.Core.Agents;
|
|
|
|
|
|
using BotSharp.Core.Intents;
|
2018-06-13 12:23:03 +00:00
|
|
|
|
using DotNetToolkit;
|
|
|
|
|
|
using EntityFrameworkCore.BootKit;
|
2018-06-15 17:39:24 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2018-08-02 21:14:46 +00:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2018-08-08 21:39:00 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2018-06-14 15:03:01 +00:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
2018-08-08 21:39:00 +00:00
|
|
|
|
using Newtonsoft.Json.Serialization;
|
2018-06-13 12:23:03 +00:00
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Engines
|
|
|
|
|
|
{
|
|
|
|
|
|
public class BotTrainer
|
|
|
|
|
|
{
|
|
|
|
|
|
private Database dc;
|
|
|
|
|
|
|
|
|
|
|
|
private string agentId;
|
|
|
|
|
|
|
2018-08-14 22:21:09 +00:00
|
|
|
|
public BotTrainer()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-08-06 15:51:49 +00:00
|
|
|
|
public BotTrainer(string agentId, Database dc)
|
2018-06-13 12:23:03 +00:00
|
|
|
|
{
|
|
|
|
|
|
this.dc = dc;
|
|
|
|
|
|
this.agentId = agentId;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-08-23 04:24:13 +00:00
|
|
|
|
public async Task<ModelMetaData> Train(Agent agent, BotTrainOptions options)
|
2018-06-13 12:23:03 +00:00
|
|
|
|
{
|
2018-08-10 20:10:53 +00:00
|
|
|
|
var data = new NlpDoc();
|
2018-06-14 15:03:01 +00:00
|
|
|
|
|
2018-06-13 12:23:03 +00:00
|
|
|
|
// Get NLP Provider
|
2018-08-02 21:14:46 +00:00
|
|
|
|
var config = (IConfiguration)AppDomain.CurrentDomain.GetData("Configuration");
|
|
|
|
|
|
var assemblies = (string[])AppDomain.CurrentDomain.GetData("Assemblies");
|
2018-08-06 15:29:14 +00:00
|
|
|
|
var platform = config.GetSection($"BotPlatform").Value;
|
|
|
|
|
|
string providerName = config.GetSection($"{platform}:Provider").Value;
|
2018-08-13 21:52:17 +00:00
|
|
|
|
var provider = TypeHelper.GetInstance(providerName, assemblies) as INlpProvider;
|
2018-08-06 15:29:14 +00:00
|
|
|
|
provider.Configuration = config.GetSection(platform);
|
2018-06-13 12:23:03 +00:00
|
|
|
|
|
2018-08-08 21:39:00 +00:00
|
|
|
|
var pipeModel = new PipeModel
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = providerName,
|
|
|
|
|
|
Class = provider.ToString(),
|
|
|
|
|
|
Meta = new JObject(),
|
|
|
|
|
|
Time = DateTime.UtcNow
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-08-13 21:52:17 +00:00
|
|
|
|
await provider.Load(agent, pipeModel);
|
2018-08-08 21:39:00 +00:00
|
|
|
|
|
2018-08-09 21:54:52 +00:00
|
|
|
|
var settings = new PipeSettings
|
2018-08-09 20:22:53 +00:00
|
|
|
|
{
|
2018-08-28 21:45:56 +00:00
|
|
|
|
ProjectDir = Path.Combine(options.AgentDir),
|
2018-08-15 22:37:23 +00:00
|
|
|
|
AlgorithmDir = Path.Combine(AppDomain.CurrentDomain.GetData("ContentRootPath").ToString(), "Algorithms")
|
2018-08-09 21:54:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2018-08-28 21:45:56 +00:00
|
|
|
|
settings.ModelDir = Path.Combine(options.AgentDir, options.Model);
|
2018-08-14 22:21:09 +00:00
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(settings.ProjectDir))
|
|
|
|
|
|
{
|
|
|
|
|
|
Directory.CreateDirectory(settings.ProjectDir);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(settings.TempDir))
|
2018-08-09 21:54:52 +00:00
|
|
|
|
{
|
2018-08-14 22:21:09 +00:00
|
|
|
|
Directory.CreateDirectory(settings.TempDir);
|
2018-08-09 20:22:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-08-09 21:54:52 +00:00
|
|
|
|
if (!Directory.Exists(settings.ModelDir))
|
2018-08-09 20:22:53 +00:00
|
|
|
|
{
|
2018-08-09 21:54:52 +00:00
|
|
|
|
Directory.CreateDirectory(settings.ModelDir);
|
2018-08-09 20:22:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-08-15 10:46:53 +00:00
|
|
|
|
var meta = new ModelMetaData
|
|
|
|
|
|
{
|
|
|
|
|
|
Platform = platform,
|
|
|
|
|
|
Language = agent.Language,
|
|
|
|
|
|
TrainingDate = DateTime.UtcNow,
|
|
|
|
|
|
Version = config.GetValue<String>($"Version"),
|
|
|
|
|
|
Pipeline = new List<PipeModel>() { pipeModel },
|
|
|
|
|
|
Model = settings.ModelDir
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-06-13 22:17:35 +00:00
|
|
|
|
// pipe process
|
2018-08-13 04:14:02 +00:00
|
|
|
|
var pipelines = provider.Configuration.GetValue<String>($"Pipe:train")
|
2018-06-14 15:03:01 +00:00
|
|
|
|
.Split(',')
|
|
|
|
|
|
.Select(x => x.Trim())
|
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
2018-08-30 13:04:10 +00:00
|
|
|
|
for (int pipeIdx = 0; pipeIdx < pipelines.Count; pipeIdx++)
|
2018-06-14 15:03:01 +00:00
|
|
|
|
{
|
2018-08-30 13:04:10 +00:00
|
|
|
|
var pipe = TypeHelper.GetInstance(pipelines[pipeIdx], assemblies) as INlpTrain;
|
2018-06-14 15:03:01 +00:00
|
|
|
|
pipe.Configuration = provider.Configuration;
|
2018-08-09 21:54:52 +00:00
|
|
|
|
pipe.Settings = settings;
|
2018-08-08 21:39:00 +00:00
|
|
|
|
pipeModel = new PipeModel
|
|
|
|
|
|
{
|
2018-08-30 13:04:10 +00:00
|
|
|
|
Name = pipelines[pipeIdx],
|
2018-08-08 21:39:00 +00:00
|
|
|
|
Class = pipe.ToString(),
|
|
|
|
|
|
Time = DateTime.UtcNow
|
|
|
|
|
|
};
|
|
|
|
|
|
meta.Pipeline.Add(pipeModel);
|
|
|
|
|
|
|
|
|
|
|
|
await pipe.Train(agent, data, pipeModel);
|
2018-08-30 13:04:10 +00:00
|
|
|
|
}
|
2018-08-08 21:39:00 +00:00
|
|
|
|
|
|
|
|
|
|
// save model meta data
|
|
|
|
|
|
var metaJson = JsonConvert.SerializeObject(meta, new JsonSerializerSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
Formatting = Formatting.Indented,
|
|
|
|
|
|
NullValueHandling = NullValueHandling.Ignore,
|
|
|
|
|
|
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
2018-06-14 15:03:01 +00:00
|
|
|
|
});
|
2018-08-28 21:45:56 +00:00
|
|
|
|
File.WriteAllText(Path.Combine(settings.ModelDir, "model-meta.json"), metaJson);
|
2018-06-13 12:23:03 +00:00
|
|
|
|
|
2018-08-08 21:39:00 +00:00
|
|
|
|
Console.WriteLine(metaJson);
|
2018-06-13 12:23:03 +00:00
|
|
|
|
|
2018-08-15 10:46:53 +00:00
|
|
|
|
return meta;
|
2018-06-13 12:23:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|