using BotSharp.Algorithm.Statistics; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Algorithm.Bayes { public class MultinomiaNaiveBayesModel { public List LabelDist { get; set; } public Dictionary CondProbDictionary { get; set; } } }