BotSharp/BotSharp.Platform.Models/MachineLearning/ModelMetaData.cs
2018-10-03 12:21:19 -05:00

24 lines
576 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.MachineLearning
{
public class ModelMetaData
{
public string Platform { get; set; }
public string BotEngine { get; set; }
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; }
public List<PipeModel> Pipeline { get; set; }
}
}