loretoparisi / fasttext.js

FastText for Node.js
MIT License
192 stars 28 forks source link

bug in FastText.prototype.nn() #18

Closed microaijp closed 5 years ago

microaijp commented 5 years ago

fasttext.js/lib/index.js

FastText.prototype.nn = function (data) {
: 
  self.dataAppendCallback = onDataCallback;
}

FastText.prototype.nn = function (data) {
: 
  self.dataAppendCallback = onDataAppendCallback;
}
loretoparisi commented 5 years ago

Thank you, let me check this out.