When I ran:
const w2v = require( 'word2vec' );
const corpusFilePath = 'cleared_words.txt';
w2v.word2vec(corpusFilePath, "vectors.txt", { size: 300 }, () => {
console.log("DONE");
});
It returns:
Child process exited with code 126
DONE
leaving vectors.txt unchanged. Is this because I'm running this on MacOS?