Questions tagged [liblinear]

LIBLINEAR is a library for large linear classification

LIBLINEAR is an integrated software for large-scale linear classification, regression and distribution estimation. It interfaces to several commonly used languages, such as Python, MATLAB, Java, PHP, Ruby and Perl.

67 questions
0
votes
2 answers

Use Cygwin or VM with UNIX for library that requires UNIX?

Forgive my ignorance: I need to use a library that requires a UNIX system (LIBSHORTTEXT). Do I need to install a virtual machine with Unix or is Cygwin enough? (I've read quite a few articles about the difference between them but I don't really…
Cheshie
  • 2,777
  • 6
  • 32
  • 51
0
votes
1 answer

different results by SMO, NaiveBayes, and BayesNet classifiers in weka

I am trying different classifiers of Weka on my data set. I have small dataset and I am classifying my data into five classes. My problem is that when I apply cross validation or percentage split classification by different classifiers, I get very…
user1419243
  • 1,655
  • 3
  • 19
  • 33
0
votes
1 answer

key phrases to SVM

SVM newbie - I have 160 categories with varying from few to many membership terms and phrases, for training data. Some categories have few phrases, and others have hundreds. I have lots of text testing data with a wide topical variety. I think I…
jonquille
  • 3
  • 1
0
votes
2 answers

LibLinear with Visual Studio 2012

How do I use Liblinear (as a developer) in a C++ Visual Studio 2012 project? I tried adding the files "linear.h", "linear.cpp", "tron.h", "tron.cpp" to my project; but there are additional dependencies that I could not resolve related to the "blas"…
0
votes
1 answer

50% percent accuracy issue with liblinear

I am quite new in Liblinear/Libsvm and i'm with a good problem here. I have very big data for training (2.883.584 samples highly unbalanced, each of them 21-dimensional) and also big data for testing (262.144 samples also with 21 dimensions). I'm…
mad
  • 2,677
  • 8
  • 35
  • 78
-1
votes
1 answer

Spark running Liblinear unable to load JBLAS jar

I'm running spark 1.4.0, hadoop 2.7.0, and JDK 7. I'm trying to run the example code of Liblinear presented here. The liblinear jar works, however when training the model it can't find the JBLAS library. I've tried including a JBLAS library in the…
Ana
  • 43
  • 5
-1
votes
1 answer

liblinear memory cost too much

I have run the liblinear to modeling a model file. The python code is here: y, x = svm_read_problem(vector_file) prob = problem(y, x) param = parameter('-s 2 -c 1') m = train(prob, param) save_model(model_file, m) The problem is that when the…
mickeyandkaka
  • 1,452
  • 2
  • 11
  • 21
1 2 3 4
5