fasttext.js icon indicating copy to clipboard operation
fasttext.js copied to clipboard

This package cannot be used in node.js worker thread

Open Mykybo opened this issue 1 year ago • 1 comments

because you use process.chdir() it throws error when run inside worker:

TypeError [ERR_WORKER_UNSUPPORTED_OPERATION]: process.chdir() is not supported in workers

Mykybo avatar Aug 14 '23 22:08 Mykybo

because you use process.chdir() it throws error when run inside worker:

TypeError [ERR_WORKER_UNSUPPORTED_OPERATION]: process.chdir() is not supported in workers

Correct, this can be solved by the way using the WASM version, loaded in a Web Worker. See https://github.com/loretoparisi/fasttext.js/tree/master/wasm

loretoparisi avatar Aug 18 '23 09:08 loretoparisi