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

@pipcook/datacook

Package Overview
Dependencies
Maintainers
6
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pipcook/datacook

A JavaScript library for feature engineering on datasets

  • 0.0.10
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34
increased by277.78%
Maintainers
6
Weekly downloads
 
Created
Source

datacook

A JavaScript library for feature engineering on datasets, it helps you to cook trainable datus out as its name, datacook.

Getting started

Install datacook via NPM:

npm install @pipcook/datacook --save

And write your first example:

import { Image } from '@pipcook/datacook';

const dog = Image.read('test/node/image/artifacts/dog.jpg');
const data = [ ...img.resize(100, 100).data ];  // the 100x100 data.

Build your own word2vec model:

import { Text } from '@pipcook/datacook';
const text = 'The king is a man who rules over a nation, he always have a woman beside him called the\
 queen.\n she helps the king controls the affars of the nation.\n Perhaps, she acclaimed the position of a king\
 when the king her husband is deceased.'.split('\n');
const stopWords = [ 'a', 'in', 'when', 'the', 'of', 'is', 'who' ];
const word2vec = new Text.Word2Vec(text, 5, stopWords);

// train the model
await word2vec.train();
word2vec.similarity('king', 'man'); // < 1.0
word2vec.mostSimilar('king'); // returns words and its weights.

Contributing

To contribute to datacook, start from forking the repository, then clone to your local machine:

$ git clone https://github.com/imgcook/datacook.git
$ cd datacook

Install dependencies:

$ npm install

Run tests for both Node.js and browser environment:

npm run test

To run specific tests:

$ npm run test:node     # Node.js
$ npm run test:browser  # Browser

To build the source code to the dist folder, run:

$ npm run build

License

Apache 2.0

Keywords

FAQs

Package last updated on 13 Aug 2021

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