aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2018-03-27 19:24:03 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2018-03-27 19:24:03 +0100
commitd83e911fe228571171f9ddc379708dc37c4bfddf (patch)
treefc396f91eaf92010ef0db33e0bb3b084e69402ac /Makefile
parentupdate training file for zip dataset (diff)
downloadgensvm-d83e911fe228571171f9ddc379708dc37c4bfddf.tar.gz
gensvm-d83e911fe228571171f9ddc379708dc37c4bfddf.zip
Major bugfix for nonlinear GenSVM
Nonlinear GenSVM depends on the eigendecomposition of the kernel matrix. Mathematically, the Sigma vector in the code should contain the square root of the eigenvalues. Taking the square root was however neglected, which resulted in poor performance of nonlinear GenSVM. This is now fixed, which means that the performance of nonlinear GenSVM will be much better.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 07855ae..15ff02a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION=0.1.4
+VERSION=0.2.0
CC=gcc
CFLAGS=-Wall -Wno-unused-result -Wsign-compare -Wstrict-prototypes \
-DVERSION=$(VERSION) -g -O3