gender-prediction
v0.0.1
Published
Predicts gender based on given first name
Downloads
6
Maintainers
Readme
This module predicts whether given first name is male or female.
The prediction algorithm is based on naive Bayes classifier from natural.
The data set used for training is from the nlp corpora of Carnegie Mellon University
Installation
npm install gender-prediction
Usage
var gender = require ("gender-prediction");
var name = 'Lilly'
predictName(name, result => {
console.log(result);
});
License
MIT