Skip to content

Commit 095c60b

Browse files
authored
Avoid abstract types of fields in SupportVectors (JuliaML#70)
* Avoid abstract types of fields in SupportVectors * Tests: Fix conversion from `Dataframe` to `Matrix`
1 parent a2085ea commit 095c60b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/LIBSVM.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ export svmtrain, svmpredict, fit!, predict, transform,
1313
include("LibSVMtypes.jl")
1414
include("constants.jl")
1515

16-
struct SupportVectors{T,U}
16+
struct SupportVectors{T<:AbstractVector,U<:AbstractMatrix}
1717
l::Int32
1818
nSV::Vector{Int32}
19-
y::AbstractVector{T}
20-
X::AbstractMatrix{U}
19+
y::T
20+
X::U
2121
indices::Vector{Int32}
2222
SVnodes::Vector{SVMNode}
2323
end

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ end
108108
@info "test Whiteside"
109109

110110
whiteside = RDatasets.dataset("MASS", "whiteside")
111-
ws = convert(Matrix{Float64}, whiteside[:,2:3])
111+
ws = Matrix{Float64}(whiteside[:,2:3])
112112
X = Array{Float64, 2}(ws[:, 2]')
113113
y = ws[:, 1]
114114

0 commit comments

Comments
 (0)