Socket
Socket
Sign inDemoInstall

retext-keywords

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

retext-keywords

Keyword extraction with Retext


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
Β 
Created
Source

retext-keywords Build Status Coverage Status

Keyword extraction with Retext.

Installation

npm:

$ npm install retext-keywords

Usage

var Retext = require('retext'),
    keywords = require('retext-keywords'),
    retext;

retext = new Retext().use(keywords);

retext.parse(
    /* First three paragraphs on Term Extraction from Wikipedia:
     * http://en.wikipedia.org/wiki/Terminology_extraction */
    'Terminology mining, term extraction, term recognition, or ' +
    'glossary extraction, is a subtask of information extraction. ' +
    'The goal of terminology extraction is to automatically extract ' +
    'relevant terms from a given corpus.' +
    '\n\n' +
    'In the semantic web era, a growing number of communities and ' +
    'networked enterprises started to access and interoperate through ' +
    'the internet. Modeling these communities and their information ' +
    'needs is important for several web applications, like ' +
    'topic-driven web crawlers, web services, recommender systems, ' +
    'etc. The development of terminology extraction is essential to ' +
    'the language industry.' +
    '\n\n' +
    'One of the first steps to model the knowledge domain of a ' +
    'virtual community is to collect a vocabulary of domain-relevant ' +
    'terms, constituting the linguistic surface manifestation of ' +
    'domain concepts. Several methods to automatically extract ' +
    'technical terms from domain-specific document warehouses have ' +
    'been described in the literature.' +
    '\n\n' +
    'Typically, approaches to automatic term extraction make use of ' +
    'linguistic processors (part of speech tagging, phrase chunking) ' +
    'to extract terminological candidates, i.e. syntactically ' +
    'plausible terminological noun phrases, NPs (e.g. compounds ' +
    '"credit card", adjective-NPs "local tourist information office", ' +
    'and prepositional-NPs "board of directors" - in English, the ' +
    'first two constructs are the most frequent). Terminological ' +
    'entries are then filtered from the candidate list using ' +
    'statistical and machine learning methods. Once filtered, ' +
    'because of their low ambiguity and high specificity, these terms ' +
    'are particularly useful for conceptualizing a knowledge domain ' +
    'or for supporting the creation of a domain ontology. Furthermore, ' +
    'terminology extraction is a very useful starting point for ' +
    'semantic similarity, knowledge management, human translation ' +
    'and machine translation, etc.',
    function (err, tree) {
        tree.keywords();
        /**
         * Array[5]
         * β”œβ”€ 0: Object
         * |     β”œβ”€ stem: "terminolog"
         * |     β”œβ”€ score: 1
         * |     └─ nodes: Array[7]
         * β”œβ”€ 1: Object
         * |     β”œβ”€ stem: "term"
         * |     β”œβ”€ score: 1
         * |     └─ nodes: Array[7]
         * β”œβ”€ 2: Object
         * |     β”œβ”€ stem: "extract"
         * |     β”œβ”€ score: 1
         * |     └─ nodes: Array[7]
         * β”œβ”€ 3: Object
         * |     β”œβ”€ stem: "web"
         * |     β”œβ”€ score: 0.5714285714285714
         * |     └─ nodes: Array[4]
         * └─ 4: Object
         *       β”œβ”€ stem: "domain"
         *       β”œβ”€ score: 0.5714285714285714
         *       └─ nodes: Array[4]
         */
    }
);

API

Parent#keywords({minimum=5}?)

Extract keywords, based on the number of times they (nouns) occur in text.

/* See above for an example, and output. */

/* To *not* limit keyword-count: */
tree.keywords({'minimum' : Infinity});

Options:

  • minimum: Return at least (when possible) minimum keywords.

Results: An array, containing match-objects:

  • stem: The stem of the word (see retext-porter-stemmer);
  • score: A value between 0 and (including) 1. the first match has a score of 1;
  • nodes: An array containing all matched word nodes.

Parent#keyphrases({minimum=5}?)

Extract keyphrases, based on the number of times they (multiple nouns) occur in text.

tree.keyphrases();
/*
 * Array[6]
 * β”œβ”€ 0: Object
 * |     β”œβ”€ stems: Array[2]
 * |     |         β”œβ”€ 0: "terminolog"
 * |     |         └─ 1: "extract"
 * |     β”œβ”€ score: 1
 * |     └─ nodes: Array[3]
 * β”œβ”€ 1: Object
 * |     β”œβ”€ stems: Array[1]
 * |     |         └─ 0: "term"
 * |     β”œβ”€ score: 0.46153846153846156
 * |     └─ nodes: Array[3]
 * β”œβ”€ 2: Object
 * |     β”œβ”€ stems: Array[2]
 * |     |         β”œβ”€ 0: "term"
 * |     |         └─ 1: "extract"
 * |     β”œβ”€ score: 0.4444444444444444
 * |     └─ nodes: Array[2]
 * β”œβ”€ 3: Object
 * |     β”œβ”€ stems: Array[2]
 * |     |         β”œβ”€ 0: "knowledg"
 * |     |         └─ 1: "domain"
 * |     β”œβ”€ score: 0.20512820512820512
 * |     └─ nodes: Array[2]
 * └─ 5: Object
 *       β”œβ”€ stems: Array[1]
 *       |         └─ 0: "commun"
 *       β”œβ”€ score: 0.15384615384615385
 *       └─ nodes: Array[3]
*/

/* To *not* limit phrase-count: */
tree.keyphrases({'minimum' : Infinity});

Options:

  • minimum: Return at least (when possible) minimum phrases.

Results: An array, containing match-objects:

  • stems: An array containing the stems of all matched word nodes inside the phrase(s);
  • score: A value between 0 and (including) 1. the first match has a score of 1;
  • nodes: An array containing array-phrases, each containing word nodes.

Benchmark

Run the benchmark yourself:

$ npm run benchmark

On a MacBook Air, keywords() runs about 3,784 op/s on a big section / small article.

             A big section (10 paragraphs)
  3,784 op/s Β» Finding keywords
    788 op/s Β» Finding keyphrases

             A big article (100 paragraphs)
    401 op/s Β» Finding keywords
     48 op/s Β» Finding keyphrases

License

MIT Β© Titus Wormer

Keywords

FAQs

Package last updated on 21 Oct 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc