2
votes
1answer
29 views
Implementing a linear, binary SVM (support vector machine)
I want to implement a simple SVM classifier, in the case of high-dimensional binary data (text), for which I think a simple linear SVM is best. The reason for implementing it mysel …
1
vote
1answer
26 views
libsvm model file format
According to this FAQ the model format in libsvm should be straightforward. And in fact it is, when I call just svm-train. As an example, the first SV for the a1a dataset is
1 3: …
0
votes
2answers
40 views
Unsupervised classification methods available
Hi all
I'm doing a research which involves "unsupervised classification".
Basically I have a trainSet and I want to cluster data in X number of classes in unsupervised way. Idea i …
33
votes
14answers
1k views
What problems have you solved using artificial neural networks?
I'd like to know about specific problems you - the SO reader - have solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll you …
2
votes
3answers
107 views
Know any good c++ support vector machine (SVM) libraries ?
Hey everyone,
Do you know of any good c++ svm libraries out there ?
I tried libsvm (http://www.csie.ntu.edu.tw/~cjlin/libsvm/) but so far I'm not flabbergasted (no documentation, …
3
votes
4answers
123 views
Help with Perceptron
Here is my perceptron implementation in ANSI C:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
float randomFloat()
{
srand(time(NULL));
float …
1
vote
4answers
140 views
How do I efficiently estimate a probability based on a small amount of evidence?
I've been trying to find an answer to this for months (to be used in a machine learning application), it doesn't seem like it should be a terribly hard problem, but I'm a software …
0
votes
3answers
24 views
How to detect tabular data from a variety of sources
In an experimental project I am playing with I want to be able to look at textual data and detect whether it contains data in a tabular format. Of course there are a lot of cases t …
2
votes
2answers
107 views
machine learning libraries in C#
Hello.
Are there any machine learning libraries in C#? I'm after something like WEKA.
Thank you.
3
votes
1answer
57 views
categorizing friends in social networks
I'm facing tho following problem:
let's say u is a social network user and as such has a list of friends, F(u). a partition is a function F->G, where G is a set of groups such as H …
3
votes
4answers
83 views
How to test the quality of a probabilities estimator?
I created a heuristic (an ANN, but that's not important) to estimate the probabilities of an event (the results of sports games, but that's not important either). Given some inputs …
9
votes
8answers
463 views
When to use Genetic Algorithms and when to use Neural Networks?
Is there a rule of thumb or set of examples to determine when Genetic Algorithms versus when to use Neural Networks to solve a problem?
I know there are cases in which you can hav …
0
votes
1answer
62 views
Question About VC Dimension
If I have the input space of (1,2,....999). And I have a concept class C, with 10 concepts: C0,C1,C2...C9.
Given an input, that input is an element of ci if the it contains the d …
0
votes
4answers
146 views
Approximating function with Neural Network
I am trying to approximate the sine() function using a neural network I wrote myself. I have tested my neural network on a simple OCR problem already and it worked, but I am having …
42
votes
17answers
4k views
How does the Google “Did you mean?” Algorithm work?
I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines abil …
