BNS Scaling: An Improved Representation over TF.IDF for SVM Text Classification


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News BNS Scaling: An Improved Representation over TF.IDF for SVM Text Classification
# 1  
Old 08-07-2008
BNS Scaling: An Improved Representation over TF.IDF for SVM Text Classification

HPL-2007-32 (R.1) BNS Scaling: An Improved Representation over TF.IDF for SVM Text Classification - Forman, George
Keyword(s): text classification; topic identification; machine learning; feature selection; Support Vector Machine; TF*IDF text representation
Abstract: In the realm of machine learning for text classification, TF.IDF is the most widely used representation for real-valued feature vectors. Unfortunately, it is oblivious to the training class labels, and naturally scales some features inappropriately. We replace IDF with Bi-Normal Separation (BNS), wh ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Data imputation with scaling

Hello masters, this is difficult to explain and maybe complicated to implement...looks beyond what I taught myself (from this forum), some help is greatly appreciated. I have a base file a1 10 a2 15 a3 20 a4 21 I have a non-base file a1 170 b12 175 c12 180 d12 190 a2 ... (3 Replies)
Discussion started by: senhia83
3 Replies

2. Shell Programming and Scripting

Re-scaling values - perl

Hey folks I have a big tab delimited file with 3 columns looks like this: chr2L 552 0.85 chr2R 135 1.06 chr3L 820 2.89 chr3R 581 3.93 chr4 585 0.94 chrX 605 1.93 All I want to do is re-scaling the third column to be between 0-1. Which means that the highest valu in 3rd column will... (5 Replies)
Discussion started by: @man
5 Replies

3. UNIX for Dummies Questions & Answers

Reading a file and Classification

Hello Everyone, I am new to UNIX. I have got a requirement. Thought of posting it in this forum so that someone might help me. Please have a look at the scenario. The Objective is to "classify books into four seperate files and then print a summary report". Specifications are as... (3 Replies)
Discussion started by: yarlagadda999
3 Replies

4. Shell Programming and Scripting

scripting for classification

hi i am very new to scripting. i am learning by myself. i found this example. can any one help in writing script for this example, so that i can have an idea how to analyse and script. example: overview: The aim of this exercise is to classify books into four seperate files and then print a... (1 Reply)
Discussion started by: yonex
1 Replies

5. UNIX Desktop Questions & Answers

CDE Classification Banner

Hello; I need to place a classification banner at the top of my Solaris 2.6 CDE Desktop. The Banner must be displayed in all CDE desktop sessions available on the CDE dashboard (1,2,3,4). The Banner must remain anchored at the top of the CDE desktop and must not be able to be closed or hidden... (0 Replies)
Discussion started by: rambo15
0 Replies
Login or Register to Ask a Question
LIBLINEAR-PREDICT(1)					      General Commands Manual					      LIBLINEAR-PREDICT(1)

NAME
liblinear-predict - Make predictions based on a trained linear classifier model SYNOPSIS
linear-predict [options] test_file model_file output_file DESCRIPTION
liblinear-predict uses the linear classifier model-file to make predictions for each of the samples in test_file and stores the results in output_file. OPTIONS
A summary of options is included below. -b (0|1) Whether to output probability estimates or not (default: 0) EXAMPLES
Train a linear SVM using L2-loss function with linear-train(1): liblinear-train data_file Output probability estimates (for logistic regression only): liblinear-predict -b 1 test_file data_file.model output_file SEE ALSO
liblinear-train(1), svm-predict(1), svm-train(1) AUTHORS
liblinear-predict was written by the LIBLINEAR authors at National Taiwan university for the LIBLINEAR Project. This manual page was written by Christian Kastner <debian@kvr.at>, for the Debian project (and may be used by others). March 08, 2011 LIBLINEAR-PREDICT(1)