BotSharp/BotSharp.NLP/Classify/NaiveBayesClassifier.cs

120 lines
4 KiB
C#
Raw Normal View History

/*
* BotSharp.NLP Library
* Copyright (C) 2018 Haiping Chen
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using BotSharp.Algorithm;
2018-09-09 14:36:22 +00:00
using BotSharp.Algorithm.Bayes;
2018-09-10 03:56:32 +00:00
using BotSharp.Algorithm.Estimators;
2018-09-09 01:47:53 +00:00
using BotSharp.Algorithm.Extensions;
2018-09-10 03:56:32 +00:00
using BotSharp.Algorithm.Features;
using BotSharp.Algorithm.Statistics;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
2018-09-10 22:25:41 +00:00
using System.Threading.Tasks;
namespace BotSharp.NLP.Classify
{
/// <summary>
/// This is a simple (naive) classification method based on Bayes rule.
/// It relies on a very simple representation of the document (called the bag of words representation)
/// This technique works well for topic classification;
/// say we have a set of academic papers, and we want to classify them into different topics (computer science, biology, mathematics).
/// Naive Bayes is best for Less training data
/// </summary>
public class NaiveBayesClassifier : IClassifier
{
private List<Probability> labelDist;
2018-09-11 21:17:12 +00:00
private MultinomiaNaiveBayes nb = new MultinomiaNaiveBayes();
2018-09-11 22:29:36 +00:00
private Dictionary<string, double> condProbDictionary = new Dictionary<string, double>();
2018-09-11 21:17:12 +00:00
2018-09-11 22:29:36 +00:00
public void Train(List<Tuple<string, double[]>> featureSets, double[] values, ClassifyOptions options)
{
2018-09-11 21:17:12 +00:00
labelDist = featureSets.GroupBy(x => x.Item1)
.Select(x => new Probability
{
Value = x.Key,
Freq = x.Count()
})
.ToList();
2018-09-11 21:17:12 +00:00
nb.LabelDist = labelDist;
nb.FeatureSet = featureSets;
2018-09-11 21:17:12 +00:00
// calculate prior prob
labelDist.ForEach(l => l.Prob = nb.CalPriorProb(l.Value));
2018-09-06 22:32:51 +00:00
2018-09-11 21:17:12 +00:00
// calculate posterior prob
2018-09-11 22:29:36 +00:00
// loop features
var featureCount = nb.FeatureSet[0].Item2.Length;
2018-09-06 22:32:51 +00:00
2018-09-11 22:29:36 +00:00
labelDist.ForEach(label =>
{
for (int x = 0; x < featureCount; x++)
{
for (int v = 0; v < values.Length; v++)
{
string key = $"{label.Value} f{x} {values[v]}";
condProbDictionary[key] = nb.CalCondProb(x, label.Value, values[v]);
}
}
});
// save the model
var model = new MultinomiaNaiveBayesModel
{
LabelDist = labelDist,
CondProbDictionary = condProbDictionary
};
}
2018-09-11 21:17:12 +00:00
public List<Tuple<string, double>> Classify(double[] features, ClassifyOptions options)
{
2018-09-11 21:17:12 +00:00
var results = new List<Tuple<string, double>>();
2018-09-06 22:32:51 +00:00
2018-09-11 21:17:12 +00:00
// calculate prop
labelDist.ForEach(lf =>
{
2018-09-11 22:29:36 +00:00
var prob = nb.CalPosteriorProb(lf.Value, features, lf.Prob, condProbDictionary);
2018-09-11 21:17:12 +00:00
results.Add(new Tuple<string, double>(lf.Value, prob));
2018-09-06 22:32:51 +00:00
});
2018-09-09 01:47:53 +00:00
2018-09-11 21:17:12 +00:00
/*Parallel.ForEach(labelDist, (lf) =>
{
nb.Y = lf.Value;
lf.Prob = nb.PosteriorProb();
});*/
2018-09-11 21:17:12 +00:00
return results;
}
}
2018-09-10 03:56:32 +00:00
public class FeaturesWithLabel
{
public List<Feature> Features { get; set; }
public string Label { get; set; }
public FeaturesWithLabel()
{
this.Features = new List<Feature>();
}
}
}