Predicts gender based on given first name
npm install gender-predictionThis 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
javascript
predictName(name, result => {
console.log(result);
});
``