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

keyworder

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keyworder

Machine learning tool for word processing

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Keyworder

Machine learning tool for word processing.

Usage

const keyworder = require('keyworder');

const input = 'Ano';
keyworder.matches('ano', input);

Neural networks

Usage

const {
    Network,
    Runner,
    activations
} = require('keyworder');

const network = new Network([4, 3, 2], activations.SIGMOID, activations.SIGMOID);
const runner = new Runner(network);
runner.limit = 50000;

const set = [
    { input: [12, 16, 12, 16], output: [1, 0] },
    { input: [10, 20, 10, 20], output: [1, 0] },
    // and many more

    { input: [0, 1, 0, 1], output: [0, 1] },
    { input: [1, 0, 1, 0], output: [0, 1] },
    // and many more
];

const successRate = runner.learn(set, 0.03);

assert.ok(successRate < 0.0001, 1);

assert.deepEqual(runner.output([11, 11, 11, 11]), [0, 1]);

Vision

Handle process of machine learning, groupping and maintaining keyword database for word processing.

  • language processing using neural networks
  • process of building large databases

Keywords

FAQs

Package last updated on 25 Apr 2017

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