Skip to content

Commit

Permalink
fix less than typo, easier copy and paste
Browse files Browse the repository at this point in the history
  • Loading branch information
domluna committed Feb 20, 2015
1 parent 5ccbde6 commit 5876a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ And then here is some example code:
var dists = [[1.0, 0.1, 0.2], [0.1, 1.0, 0.3], [0.2, 0.1, 1.0]];
tsne.initDataDist(dists);

for(var k = 0; k &lt 500; k++) {
for(var k = 0; k < 500; k++) {
tsne.step(); // every time you call this, solution gets better
}

Expand Down

0 comments on commit 5876a5d

Please sign in to comment.