SVM Resources

Showing items tagged with "SVM"

While SVM is typically applied to binary classification, this code utilizes Chih-Jen Lin's SVM toolkit for multi-class classification. The implementation is tested on the UCI IRIS dataset, demonstrating excellent performance through one-vs-one strategy and parameter optimization techniques.

MATLAB 230 views Tagged

This implementation utilizes Dense SIFT features with Bag of Words modeling for image representation. After encoding images using BoW, we train an SVM classifier for categorization. The methodology employs both RBF kernel and a custom histogram intersection kernel. Experimental validation uses action images across 6 categories (60 images per class) with 40 training and 20 testing samples per class. Code implementation includes feature extraction, vocabulary construction, and kernel function optimization.

MATLAB 260 views Tagged

SVM face recognition program source code includes s1-s40 face database, face.m as main recognition program, and load_database.m for data loading function. Note: LIBSVM toolbox functions require manual installation - first install compiler, then execute make.m for setup.

MATLAB 297 views Tagged