Skip to content
This repository has been archived by the owner on May 12, 2019. It is now read-only.

Commit

Permalink
Merge bee7229 into 53962c4
Browse files Browse the repository at this point in the history
  • Loading branch information
dovahcrow committed Oct 1, 2014
2 parents 53962c4 + bee7229 commit edc13c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SVM.jl
Expand Up @@ -12,7 +12,7 @@ end

function Base.show(io::IO, fit::SVMFit)
@printf io "Fitted linear SVM\n"
@printf io " * Non-zero weights: %d\n" nnz(fit.w)
@printf io " * Non-zero weights: %d\n" countnz(fit.w)
@printf io " * Iterations: %d\n" fit.pass
@printf io " * Converged: %s\n" string(fit.converged)
end
Expand Down

0 comments on commit edc13c2

Please sign in to comment.