Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
langdetect-ensemble
Advanced tools
Detect the language of text, support ensembling of multiple models through fastText. langdetect-ensemble uses Franc by default in case no language models are loaded
npm:
npm install langdetect-ensemble
Loading the library:
var fs = require('fs'); // Use to automatically load all models from given folder
var lang = require('langdetect-ensemble')
Initializing LangDetect object:
var dir_models = __dirname + '/path/to/your/model/folder/'
langDet = new lang.langDetect()
fs.readdirSync(dir_models).forEach(function(file) {
let model_file = dir_models +'/'+file;
try {
langDet.addModel(model_file)
} catch (error) {
console.log(error);
}
});
Setting weights of model:
langDet.addModel('./lid.176.ftz')
langDet.setWeights([0.3, 0.7]) // Here, a vote by franc counts for 0.3, and a vote by the FastText model counts for 0.7
Using LangDetect object for language detection:
langDet.predict('chào buổi sáng').then((lang) => {
console.log(lang);
// expected output: 'vie'
});
MIT © [Cuong V Nguyen]
FAQs
<!--This file is generated by `build.js`-->
The npm package langdetect-ensemble receives a total of 2 weekly downloads. As such, langdetect-ensemble popularity was classified as not popular.
We found that langdetect-ensemble 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.