Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
benjcal committed Aug 19, 2024
1 parent d635cca commit f81beea
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/config/Categories.json
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@
"Unescape string",
"Pseudo-Random Number Generator",
"Sleep",
"File Tree"
"File Tree",
"Ngram"
]
},
{
Expand Down
52 changes: 52 additions & 0 deletions src/core/operations/Ngram.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/**
* @author benjcal [[email protected]]
* @copyright Crown Copyright 2024
* @license Apache-2.0
*/

import Operation from "../Operation.mjs";

/**
* ngram operation
*/
class Ngram extends Operation {

/**
* Ngram constructor
*/
constructor() {
super();

this.name = "Ngram";
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";
this.inputType = "string";
this.outputType = "string";
this.args = [
{
name: "N-gram size",
type: "number",
value: 3
},
];
}

/**
* @param {string} input
* @param {Object[]} args
* @returns {string}
*/
run(input, args) {
const n = args[0];
const ngrams = [];
for (let i = 0; i <= input.length - n; i++) {
ngrams.push(input.slice(i, i + n));
}

return ngrams.join("\n");
}

}

export default Ngram;

0 comments on commit f81beea

Please sign in to comment.