Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

N-grams of longer arrays? #11

Closed
sgpascoe opened this issue Jun 29, 2022 · 2 comments
Closed

N-grams of longer arrays? #11

sgpascoe opened this issue Jun 29, 2022 · 2 comments

Comments

@sgpascoe
Copy link

Is it possible to get the bigrams of: [alpha bravo bravo, charlie delta, alpha bravo]

Ideally I'd like a return of

2 alpha bravo
1 bravo bravo
1 charlie delta
0 bravo charlie
0 delta alpha

Perhaps my inputs are wrong, but it seems to be crossing the boundaries to return

2 alpha bravo
1 bravo bravo
1 charlie delta
1 bravo charlie
1 delta alpha

@sgpascoe
Copy link
Author

Sorry I've got it!

        var ngramtester = ['alpha bravo bravo', 'charlie delta', 'alpha bravo']
        var newgramarray = [];
        for (var i = 0; i < ngramtester.length; i++) {newgramarray.push(await bigram(ngramtester[i].split(' ')))

@wooorm
Copy link
Member

wooorm commented Jun 29, 2022

I don’t understand the question.
You’re making some mistakes with JavaScript btw. await should not be needed for example.
You’re also wrapping bigrams in a way that should not be needed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants