BotSharp/BotSharp.Core/Engines/ModelMetaData.cs

25 lines
555 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
2018-08-08 21:39:00 +00:00
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class ModelMetaData
{
public string Platform { get; set; }
public string Language { get; set; }
public string Version { get; set; }
public DateTime TrainingDate { get; set; }
/// <summary>
/// Model file fullpath
/// </summary>
[JsonIgnore]
public string Model { get; set; }
2018-08-08 21:39:00 +00:00
public List<PipeModel> Pipeline { get; set; }
}
}