Load Libsvm files incrementally (one row at a time)

This class provides a way to load Libsvm files incrementally. Useful for very large files
66 Downloads
Updated Fri, 23 Jun 2017 15:46:36 +0000

View License

The Libsvm library provides several functions to interface with Matlab. Such functions load the entire matrix into memory. However this approach is not suitable for very large datasets (think 'mnist8m' which is 20GB in size).
Libsvm_Incremental_Loader provides a solution to this problem: It allows you to load each row into memory iteratively, without storing the entire matrix. Useful for very large files. An example is provided along with the code.

Cite As

Dang Manh Truong (2024). Load Libsvm files incrementally (one row at a time) (https://www.mathworks.com/matlabcentral/fileexchange/63446-load-libsvm-files-incrementally-one-row-at-a-time), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2016b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Statistics and Machine Learning Toolbox in Help Center and MATLAB Answers
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Libsvm_Incremental_Loader/

Version Published Release Notes
1.0.0.0

Modified the description