BotSharp/BotSharp.Algorithm/Bayes/MultinomiaNaiveBayesModel.cs
2018-09-12 15:31:20 -05:00

17 lines
385 B
C#

using BotSharp.Algorithm.Statistics;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Algorithm.Bayes
{
public class MultinomiaNaiveBayesModel
{
public List<Probability> LabelDist { get; set; }
public Dictionary<string, double> CondProbDictionary { get; set; }
public List<String> Values { get; set; }
}
}