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

26 lines
597 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BotSharp.Platform.Models.MachineLearning
{
public class AgentMlConfig
{
[Required]
[StringLength(36)]
public String AgentId { get; set; }
[Required]
public double MinConfidence { get; set; }
[Required]
[MaxLength(64)]
public string CustomClassifierMode { get; set; }
[MaxLength(64)]
public String Pipeline { get; set; }
}
}