Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there some .NET machine learning library that could, for example, suggest tags for a question? [closed]

Just to use it as an example, StackOverflow users already associated tags to questions for a lot of questions.

Is there a .NET machine learning library that could use this historic data to 'learn' how to associate tags to newly created questions and suggest them to the user?

like image 615
André Pena Avatar asked Oct 20 '10 09:10

André Pena


3 Answers

I made a machine learning library that might help: http://machine.codeplex.com. Its basic premise is that you can use simple lists of POCO objects and create models from them by annotating the classes. Hope this helps!

--- Update I've since moved the project here: http://numl.net.

like image 50
Seth Juarez Avatar answered Nov 15 '22 02:11

Seth Juarez


There is a .NET library for popular statistical computing engine, R Project. The library is called R.NET.

WEKA, the data mining tool for Java, mentions several possibilities to use the library with .NET. However, it's not ported or a wrapper but bridging the communication between .NET and Java.

like image 27
Mason Wan Avatar answered Nov 15 '22 02:11

Mason Wan


This looks similar to spam filtering, but with more buckets.

A widely used technique for spam filtering is Bayesian filters. A Google search will give you a lot of options, including the first hit on CodeProject.

like image 1
Albin Sunnanbo Avatar answered Nov 15 '22 03:11

Albin Sunnanbo