Skip to content

Commit e36d6ad

Browse files
willtebbutttheogf
andauthored
Update examples/support-vector-machine/script.jl
Co-authored-by: Théo Galy-Fajou <[email protected]>
1 parent e3d0107 commit e36d6ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/support-vector-machine/script.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ x_test = ColVecs(mapreduce(collect, hcat, Iterators.product(test_range, test_ran
3333
# Create kernel function:
3434
k = SqExponentialKernel() ScaleTransform(2.0)
3535

36-
# LibSVM can make use of a pre-computed kernel matrix.
36+
# [LIBSVM](https://github.com/JuliaML/LIBSVM.jl) can make use of a pre-computed kernel matrix.
3737
# KernelFunctions.jl can be used to produce that.
3838
# Precomputed matrix for training (corresponds to linear kernel)
3939
model = svmtrain(kernelmatrix(k, x_train), y_train; kernel=LIBSVM.Kernel.Precomputed)

0 commit comments

Comments
 (0)