Skip to content

Commit

Permalink
Change output format
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Pezzotti committed May 23, 2018
1 parent 24e2bd3 commit 8e7dd92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tsne.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class TSNE {
this.knnEstimator.iterateBruteForce();
//this.knnEstimator.iterateKNNDescent();
if ( (this.knnEstimator.iteration % 100) === 0 && this.verbose === true ){
console.log(`Iteration KNN ${this.knnEstimator.iteration}`);
console.log(`Iteration KNN:\t ${this.knnEstimator.iteration}`);
}
}
return true; //TODO
Expand All @@ -160,7 +160,7 @@ export class TSNE {
for(let iter = 0; iter < iterations; ++iter){
await this.optimizer.iterate();
if ( (this.optimizer.iteration % 100) === 0 && this.verbose === true ){
console.log(`Iteration ${this.optimizer.iteration}`);
console.log(`Iteration Optimization:\t ${this.optimizer.iteration}`);
}
}
}
Expand Down

0 comments on commit 8e7dd92

Please sign in to comment.