Skip to content

Commit

Permalink
Fixed scaling bug (which caused tsne to always downscale to 50 dimens…
Browse files Browse the repository at this point in the history
…ions)
  • Loading branch information
lejon committed Nov 4, 2016
1 parent 6da9cd7 commit e4a6cbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import com.jujutsu.utils.MatrixUtils;

public class BarnesHutTSneCsv {
static int initial_dims = 50;
static int initial_dims = -1;
static double perplexity = 20.0;
static double theta = 0.5;
static boolean hasLabels = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import com.jujutsu.utils.MatrixUtils;

public class TSneCsv {
static int initial_dims = 50;
static int initial_dims = -1;
static double perplexity = 20.0;
static boolean hasLabels = true;
static boolean scale_log = false;
Expand Down

0 comments on commit e4a6cbf

Please sign in to comment.