-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Today I started working with fasttext-node and I wrote the following script in Typescript:
import * as FastText from 'fasttext-node'
async function main() {
const fastext = new FastText({ logs: true })
try {
const trainResult = await fastext.train(
'./train.txt',
{
epoch: 50,
model: 'my-training-model'
}
)
const result = await fastext.predict(['Custard Pudding tasting like raw eggs'],
{ labelCount: 10 }
)
} catch (err) {
console.log('Training data err', err)
}
}
// execute the code
main();The train.txt file is the same from the examples, and I hosted it on my local folder.
Issue 1
When I change the path of train.txt to https://raw.githubusercontent.com/jazzyarchitects/fasttext-node/master/train.txt, I get the following error:
Issue 2
When I execute the piece of code I wrote, I get the following error:

I like the way the API has been implemented, and I would really like to use this library. Please help me get it working
