Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wingbot-cli

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wingbot-cli

Wingbot.ai CLI tool

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Wingbot.ai CLI

CLI tool for wingbot.AI Tools for processing intents from RASA JSONs to Facebook fast-text learning sets.

Because there is good GUI: Rasa NLU Trainer

CLI Usage

  • Log in to Wingbot
$ wingbot login

AI Models

  • Deploy new model
$ wingbot model deploy <model-id> ./model-file.bin
  • Remove model
$ wingbot model delete <model-id>
  • List models
$ wingbot model list

Learning set tools

  • Convert RASA json to fast-text learning set
$ wingbot jsonToText ./testData.json ./testData.txt
  • Convert RASA json to fast-text learning set and multiply by entities
$ wingbot jsonToText -m ./testData.json ./testData.txt
  • Make word vectors learning set from wiki XML export
$ wingbot wikiToText ./testData.xml ./testData.txt

API

Classes

MultiplicatorStream
MultiplicatorStream
Pipeline

Functions

jsonToText(input, output, [pipeline], [mapFn])Promise

Create fast-text learning set from Rasa intents json

wikiToText(input, output, [mapFn])Promise

Create a pretrained word vectors learning set from Wikipedia XML dump

normalize(str)

Preserves only letters (with or withour diacritics) and makes everything lowercased

MultiplicatorStream

Kind: global class

new MultiplicatorStream()

Multiplicates a learning set data with available entities information

Example

const path = require('path');
const { EntitiesFromJson, MultiplicatorStream, jsonToText } = require('wingbot');

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));

new MultiplicatorStream(getVariants)

ParamType
getVariantsfunction

MultiplicatorStream

Kind: global class

new MultiplicatorStream()

Multiplicates a learning set data with available entities information

Example

const path = require('path');
const { EntitiesFromJson, MultiplicatorStream, jsonToText } = require('wingbot');

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));

new MultiplicatorStream(getVariants)

ParamType
getVariantsfunction

Pipeline

Kind: global class

new Pipeline()

Simple tool, which creates a Promise from pipeline of streams

pipeline.add(pipe) ⇒ this

Append a stream

Kind: instance method of Pipeline

ParamTypeDescription
pipeReadableStream | Writablethe transform stream

pipeline.promise() ⇒ promise

Get a promise

Kind: instance method of Pipeline

jsonToText(input, output, [pipeline], [mapFn]) ⇒ Promise

Create fast-text learning set from Rasa intents json

Kind: global function

ParamTypeDefaultDescription
inputstring | ReadableStreampath of Rasa intent set or stream
outputstring | Writablepath or stream to write fast-text learning set
[pipeline]Arrayarray of transform streams to modify the learning set
[mapFn]functiontext normalizer function

Example

const path = require('path');
const { jsonToText } = require('wingbot');

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));

wikiToText(input, output, [mapFn]) ⇒ Promise

Create a pretrained word vectors learning set from Wikipedia XML dump

Kind: global function

ParamTypeDefaultDescription
inputstring | ReadableStreampath of Rasa intent set or stream
outputstring | Writablepath or stream to write fast-text learning set
[mapFn]functiontext normalizer function

normalize(str)

Preserves only letters (with or withour diacritics) and makes everything lowercased

Kind: global function Returs: string

ParamTypeDescription
strstringinput string

Keywords

FAQs

Package last updated on 16 Apr 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc