Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
intent-tools
Advanced tools
Tools for processing Rasa.ai JSONs to text learning sets for FB FastText
Tools for processing intents from RASA JSONs to Facebook fast-text learning sets.
Because there is good GUI: Rasa NLU Trainer
$ intools jsonToText ./testData.json ./testData.txt
$ intools jsonToText -m ./testData.json ./testData.txt
$ intools wikiToText ./testData.xml ./testData.txt
Promise
Create fast-text learning set from Rasa intents json
Promise
Create a pretrained word vectors learning set from Wikipedia XML dump
Preserves only letters (with or withour diacritics) and makes everything lowercased
Kind: global class
Multiplicates a learning set data with available entities information
Example
const path = require('path');
const { EntitiesFromJson, MultiplicatorStream, jsonToText } = require('intent-tools');
const from = path.resolve(process.cwd(), 'sample.json');
const to = path.resolve(process.cwd(), 'trainingData.txt');
const entities = new main.EntitiesFromJson(from);
const pipeline = [
new MultiplicatorStream((cat, word) => entities.getWordList(cat, word))
];
entities.loadEntities()
.then(() => main.jsonToText(from, to, pipeline))
.catch(e => console.error(e));
Param | Type |
---|---|
getVariants | function |
Kind: global class
Multiplicates a learning set data with available entities information
Example
const path = require('path');
const { EntitiesFromJson, MultiplicatorStream, jsonToText } = require('intent-tools');
const from = path.resolve(process.cwd(), 'sample.json');
const to = path.resolve(process.cwd(), 'trainingData.txt');
const entities = new main.EntitiesFromJson(from);
const pipeline = [
new MultiplicatorStream((cat, word) => entities.getWordList(cat, word))
];
entities.loadEntities()
.then(() => main.jsonToText(from, to, pipeline))
.catch(e => console.error(e));
Param | Type |
---|---|
getVariants | function |
Kind: global class
this
promise
Simple tool, which creates a Promise from pipeline of streams
this
Append a stream
Kind: instance method of Pipeline
Param | Type | Description |
---|---|---|
pipe | ReadableStream | Writable | the transform stream |
promise
Get a promise
Kind: instance method of Pipeline
Promise
Create fast-text learning set from Rasa intents json
Kind: global function
Param | Type | Default | Description |
---|---|---|---|
input | string | ReadableStream | path of Rasa intent set or stream | |
output | string | Writable | path or stream to write fast-text learning set | |
[pipeline] | Array | array of transform streams to modify the learning set | |
[mapFn] | function |
| text normalizer function |
Example
const path = require('path');
const { jsonToText } = require('intent-tools');
const from = path.resolve(process.cwd(), 'sample.json');
const to = path.resolve(process.cwd(), 'trainingData.txt');
main.jsonToText(from, to)
.catch(e => console.error(e));
Promise
Create a pretrained word vectors learning set from Wikipedia XML dump
Kind: global function
Param | Type | Default | Description |
---|---|---|---|
input | string | ReadableStream | path of Rasa intent set or stream | |
output | string | Writable | path or stream to write fast-text learning set | |
[mapFn] | function |
| text normalizer function |
Preserves only letters (with or withour diacritics) and makes everything lowercased
Kind: global function
Returs: string
Param | Type | Description |
---|---|---|
str | string | input string |
FAQs
Tools for processing Rasa.ai JSONs to text learning sets for FB FastText
The npm package intent-tools receives a total of 1 weekly downloads. As such, intent-tools popularity was classified as not popular.
We found that intent-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.