API
ReadLIBSVM.read_libsvm
— Functionread_libsvm(filepath::String; has_query=false)
read_libsvm(raw::Vector{UInt8}; has_query=false)
Read data in the LIBSVM format from either a file or a raw byte vector and return it as a tuple containing feature matrix, target labels, and optionally query entries.
Arguments
filepath::String
: The path to a file containing data in LIBSVM format. Only one offilepath
orraw
should be provided.raw::Vector{UInt8}
: A vector of raw bytes containing data in LIBSVM format. Only one offilepath
orraw
should be provided.has_query::Bool=false
: A boolean flag indicating whether the data includes query entries.
Returns
- A tuple
(x, y)
ifhas_query
isfalse
, wherex::Matrix{Float64}
: The feature matrix as a denseFloat64
matrix, where each row represents a data point, and each column represents a feature.y::Vector{Float64}
: The target labels as a dense vector ofFloat64
.
- A tuple
(x, y, q)
ifhas_query
istrue
, wherex::Matrix{Float64}
: The feature matrix as a denseFloat64
matrix.y::Vector{Float64}
: The target labels as a dense vector ofFloat64
.q::Vector{Int}
: The query entries as a dense vector ofInt
.