Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
karpathy committed Mar 27, 2015
2 parents 7d13587 + dcb285e commit 9ef2b52
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 9ef2b52

Please sign in to comment.