aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2018-03-27 19:36:54 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2018-03-27 19:36:54 +0100
commit048bd382a794249df7f0aea6cf55cc8d7f1bb5f8 (patch)
treeeac0ce5da1d2290afaf07bc42dbb354b0a8aeb7a
parentAllow seeding for nonlinear GenSVM (diff)
downloadgensvm-048bd382a794249df7f0aea6cf55cc8d7f1bb5f8.tar.gz
gensvm-048bd382a794249df7f0aea6cf55cc8d7f1bb5f8.zip
bump version
-rw-r--r--CHANGELOG.md7
-rw-r--r--Makefile2
-rw-r--r--tests/src/test_gensvm_io.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5f3bcc4..77c2355 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Change Log
+## Version 0.2.1
+
+- Add support for prediction after grid search
+- Bugfix for reading nonlinear training files
+- Command line flag for maximum number of iterations in GenSVM
+- Add support for seeding with nonlinear GenSVM
+
## Version 0.2.0
- Fix bug in nonlinear GenSVM, it should perform better now.
diff --git a/Makefile b/Makefile
index 15ff02a..30a8ee3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION=0.2.0
+VERSION=0.2.1
CC=gcc
CFLAGS=-Wall -Wno-unused-result -Wsign-compare -Wstrict-prototypes \
-DVERSION=$(VERSION) -g -O3
diff --git a/tests/src/test_gensvm_io.c b/tests/src/test_gensvm_io.c
index b4210bb..fb5916d 100644
--- a/tests/src/test_gensvm_io.c
+++ b/tests/src/test_gensvm_io.c
@@ -654,7 +654,7 @@ char *test_gensvm_write_model()
char buffer[GENSVM_MAX_LINE_LENGTH];
fgets(buffer, GENSVM_MAX_LINE_LENGTH, fid);
- mu_assert(strcmp(buffer, "Output file for GenSVM (version 0.2.0)\n")
+ mu_assert(strcmp(buffer, "Output file for GenSVM (version 0.2.1)\n")
== 0, "Line doesn't contain expected content (0).\n");
// skip the time line