
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
naivebayes-predictor
Advanced tools
Naive Bayes classifier that also uses continuous variables and log scale.
A simple node.js module for Naive Bayes classifier.
It works also with continuous variables and can return results in log scale. There is also a function to clean the dataset.
$ npm install naivebayes-predictor
'use strict';
// Require Naive Bayes module
const NaiveBayes = require('naivebayes-predictor');
// Get a dataset
let dataset = [
{skill: 'mathematics', industry: 'finance', age: 18, score: 5, verified: 0},
{skill: 'mathematics', industry: 'finance', age: 18, score: 6, verified: 0},
{skill: 'mathematics', industry: 'business', age: 18, score: 8, verified: 1},
{skill: 'mathematics', industry: 'finance', age: 18, score: 7, verified: 0},
{skill: 'economy', industry: 'finance', age: 30, score: 4, verified: 1},
{skill: 'economy', industry: 'sales', age: 32, score: 3, verified: 0},
{skill: 'economy', industry: 'business', age: 31, score: 3, verified: 1},
{skill: 'economy', industry: 'business', age: 34, score: 4, verified: 1},
{...}
];
// Make continuous variables discrete detecting range intervals inside every single variable
dataset = naive.discretizeDataset(
dataset,
["verified"] // List of continuous variables to not convert as discrete
);
// Train the model
naive.train(
dataset,
"skill" // Name of the label to classify
);
// Compute the results
naive.compute();
// Distribution in scale from 0.0 to 1.0
// Show the results about "skill" feature
console.log(naive.results);
// { mathematics: 0.017578125, economy: 0.0029296875 }
// Clean the model and the results
naive.cleanTheModel();
// Use another dataset
dataset = [{...}, {...}, etc.];
// Optional: clean the dataset from some variable
dataset = naive.cleanDataset(
dataset,
['PassengerId','Name'] // The names of the variables to delete
);
// Make continuous variables discrete detecting range intervals inside every single variable
dataset = naive.discretizeDataset(
dataset,
["Survived"] // List of continuous variables to not convert as discrete
);
// Train the model
naive.train(
dataset,
"Survived" // Name of the label to classify
);
// Compute the results
naive.compute();
// Distribution in scale from 0.0 to 1.0
// Compute the results in log scale
naive.computeInLogScale();
// More negative is the value more small the probability
// { '0': -3361.759725902712, '1': -2087.72499485088 }
// Show the results about "Survived" feature
console.log(naive.results);
FAQs
Naive Bayes classifier that also uses continuous variables and log scale.
The npm package naivebayes-predictor receives a total of 0 weekly downloads. As such, naivebayes-predictor popularity was classified as not popular.
We found that naivebayes-predictor 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.