Skip to content

Commit

Permalink
Remove unwanted console.log statement in example code
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed May 13, 2016
1 parent 1ddbeb5 commit be95a65
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion examples/step3_loadModel.js
Expand Up @@ -6,7 +6,6 @@ w2v.loadModel( __dirname + '/fixtures/vectors.txt', function( err, model ) {
console.log( model );

var wordVecs = model.getVectors( [ 'Hamlet', 'daughter' ] );
console.log( wordVecs );
console.log( model.getNearestWord( wordVecs[0].values, 1 ) );

var similar = model.mostSimilar( 'dead', 20 );
Expand Down

0 comments on commit be95a65

Please sign in to comment.