This commit is contained in:
Benjamin Calderon 2024-08-18 22:01:08 -04:00
parent f81beea264
commit 4e6efead61
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -321,7 +321,7 @@
"Pseudo-Random Number Generator",
"Sleep",
"File Tree",
"Ngram"
"N-gram"
]
},
{

View file

@ -17,7 +17,7 @@ class Ngram extends Operation {
constructor() {
super();
this.name = "Ngram";
this.name = "N-gram";
this.module = "Default";
this.description = "Extracts n-grams from the input text. N-grams are contiguous sequences of n characters from a given text sample.";
this.infoURL = "https://wikipedia.org/wiki/N-gram";