BotSharp/BotSharp.Platform.Models/MachineLearning/AgentMlConfig.cs

26 lines
597 B
C#
Raw Normal View History

2018-10-03 06:00:07 +00:00
using System;
2018-06-25 12:38:34 +00:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
2018-10-03 06:00:07 +00:00
namespace BotSharp.Platform.Models.MachineLearning
2018-06-25 12:38:34 +00:00
{
2018-10-03 06:00:07 +00:00
public class AgentMlConfig
2018-06-25 12:38:34 +00:00
{
[Required]
[StringLength(36)]
public String AgentId { get; set; }
2018-07-12 15:07:05 +00:00
[Required]
2018-10-21 14:03:12 +00:00
public double MinConfidence { get; set; }
2018-07-12 15:07:05 +00:00
[Required]
[MaxLength(64)]
public string CustomClassifierMode { get; set; }
[MaxLength(64)]
2018-06-25 12:38:34 +00:00
public String Pipeline { get; set; }
}
}