extract-topics
Version:
Extract topics from text using LDA
33 lines (32 loc) • 794 B
JSON
{
"name": "extract-topics",
"version": "1.0.3",
"description": "Extract topics from text using LDA",
"main": "extractTopics.js",
"type": "module",
"scripts": {
"example": "node example.js",
"clean": "npx rimraf node_modules package-lock.json && npm install"
},
"keywords": [
"lda",
"topic",
"extraction",
"text",
"nlp"
],
"author": "Justin Parker",
"repository": {
"type": "git",
"url": "https://github.com/jparkerweb/extract-topics.git"
},
"bugs": {
"url": "https://github.com/jparkerweb/extract-topics/issues"
},
"homepage": "https://github.com/jparkerweb/extract-topics#readme",
"license": "MIT",
"dependencies": {
"ldawithmorelanguages": "https://github.com/jparkerweb/lda",
"sentence-parse": "^1.3.1"
}
}