From c5c8a2893f6f8d1c7fecc4b76c7bab799eb9baf7 Mon Sep 17 00:00:00 2001 From: Leif Jonsson Date: Mon, 7 Nov 2016 20:29:23 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0897ae1..e140d2f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Pure Java implementation of Van Der Maaten and Hinton's t-SNE clustering algorit This project is divided into two separate Maven projects, one for the core t-SNE and one for the demos (stand-alone executables that can be run from command line). -With Barnes Hut, T-SNE-Java is now in version v2.2.0, both core and demos. +With Barnes Hut, T-SNE-Java is now in version v2.3.0, both core and demos. Basic command line usage ------------------------ @@ -37,15 +37,15 @@ Examples: Run TSne on file without headers and no labels. ```shell -java -jar target/tsne-demos-2.2.0.jar -nohdr -nolbls src/main/resources/datasets/iris_X.txt +java -jar target/tsne-demos-2.3.0.jar -nohdr -nolbls src/main/resources/datasets/iris_X.txt ``` Run TSne on CSV file with headers and label column nr. 5. ```shell -java -jar target/tsne-demos-2.2.0.jar --lblcolno 5 src/main/resources/datasets/iris.csv +java -jar target/tsne-demos-2.3.0.jar --lblcolno 5 src/main/resources/datasets/iris.csv ``` Run TSne on file without headers and no labels but supply a separate label file (with the same ordering as the data file). ```shell -java -jar target/tsne-demos-2.2.0.jar --nohdr --nolbls --label_file=src/main/resources/datasets/iris_X_labels.txt src/main/resources/datasets/iris_X.txt +java -jar target/tsne-demos-2.3.0.jar --nohdr --nolbls --label_file=src/main/resources/datasets/iris_X_labels.txt src/main/resources/datasets/iris_X.txt ``` Same as above but using parallelization. @@ -118,7 +118,7 @@ public class TSneTest { Version ------- -Demo: 2.2.0 +Demo: 2.3.0 Core: 2.2.0 From 3f81d31a2c2f39da22ea6e396dbbf21d9b4adc7c Mon Sep 17 00:00:00 2001 From: Leif Jonsson Date: Mon, 7 Nov 2016 20:33:15 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e140d2f..1c34c33 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ T-SNE-Java ========== NEWS 2016-11-02! -================ +---------------- *T-SNE-Java now have support for __Barnes Hut__ which makes it possible to run the amazing t-SNE on much larger data sets (or much faster on small data sets:) )!* The Barnes Hut version can also be run in parallel! We have seen from 40 % performance improvements on moderate datasets (ca 10 000 samples) to 400 % improvements on larger datasets (MNIST 60000 samples) compared to standard Barnes Hut. @@ -20,7 +20,6 @@ Pure Java implementation of Van Der Maaten and Hinton's t-SNE clustering algorit This project is divided into two separate Maven projects, one for the core t-SNE and one for the demos (stand-alone executables that can be run from command line). -With Barnes Hut, T-SNE-Java is now in version v2.3.0, both core and demos. Basic command line usage ------------------------