BotSharp/BotSharp.Platform.Models/MachineLearning/ModelMetaData.cs

24 lines
576 B
C#
Raw Normal View History

2018-10-03 17:21:19 +00:00
using System;
2018-08-08 21:39:00 +00:00
using System.Collections.Generic;
using System.Text;
2018-10-03 17:21:19 +00:00
namespace BotSharp.Platform.Models.MachineLearning
2018-08-08 21:39:00 +00:00
{
public class ModelMetaData
{
public string Platform { get; set; }
2018-10-03 17:21:19 +00:00
public string BotEngine { get; set; }
2018-08-08 21:39:00 +00:00
public string Language { get; set; }
public string Version { get; set; }
public DateTime TrainingDate { get; set; }
/// <summary>
/// Model file fullpath
/// </summary>
public string Model { get; set; }
2018-08-08 21:39:00 +00:00
public List<PipeModel> Pipeline { get; set; }
}
}