Inferensys

Glossary

Phraseness

A scoring component in keyphrase extraction that measures how linguistically well-formed a candidate sequence is as a phrase, independent of its topical relevance.
Stylish WeWork-like workspace with hot desks and document wall, professional searching through enterprise knowledge base on a mounted ultrawide display, warm industrial pendants overhead.
LINGUISTIC WELL-FORMEDNESS SCORE

What is Phraseness?

Phraseness is a scoring component in keyphrase extraction that measures how linguistically well-formed a candidate sequence is as a phrase, independent of its topical relevance to the document.

Phraseness quantifies the degree to which a candidate n-gram conforms to the syntactic and collocational patterns of natural language. Unlike informativeness, which measures topical relevance, phraseness evaluates structural integrity—assessing whether a sequence like "machine learning" constitutes a valid multi-word expression rather than an arbitrary word grouping such as "learning the machine." This metric relies on part-of-speech tagging, noun phrase chunking, and statistical measures of word association strength.

Common implementations compute phraseness using pointwise mutual information (PMI) or likelihood ratios derived from large reference corpora. A high phraseness score indicates strong internal cohesion between constituent words, filtering out grammatically implausible candidates before they reach downstream relevance scoring. This two-stage filtering—phraseness followed by informativeness—forms the backbone of modern unsupervised keyphrase extraction systems like YAKE and RAKE, ensuring that extracted keyphrases are both linguistically valid and topically salient.

LINGUISTIC WELL-FORMEDNESS

Core Characteristics of Phraseness

Phraseness quantifies the degree to which a candidate sequence of words constitutes a grammatically sound and syntactically coherent phrase, independent of its topical relevance to the document.

01

Syntactic Cohesion

Measures the internal grammatical integrity of a candidate sequence. High phraseness requires that words form a valid syntactic constituent, such as a noun phrase or verb phrase, rather than a random collocation.

  • Uses Part-of-Speech (POS) tagging to validate sequences like JJ + NN (e.g., "machine learning")
  • Rejects sequences ending in stop words or prepositions (e.g., "learning about")
  • Often implemented via regular expression chunking over POS-tagged text
02

Stop Word Boundary Rules

Phraseness scoring enforces strict rules about stop word delimiters. Candidate phrases are typically extracted from text segments bounded by punctuation or function words.

  • Sequences must not begin or end with a stop word
  • Internal stop words are permitted only in specific patterns (e.g., "United of America")
  • This heuristic dramatically reduces the candidate pool while preserving multi-word expressions
03

Collocation Strength

Evaluates whether words appear together more frequently than chance would predict, using statistical association measures. This distinguishes true multi-word expressions from accidental co-occurrences.

  • Pointwise Mutual Information (PMI): Measures the probability of co-occurrence versus independent occurrence
  • Chi-squared and log-likelihood ratio tests identify statistically significant bigrams and trigrams
  • High collocation strength indicates the sequence functions as a single lexical unit
04

N-gram Grammaticality

Assesses whether a candidate n-gram follows the morphological and syntactic rules of the language. This filters out sequences that are mathematically frequent but linguistically invalid.

  • Validates subject-verb agreement and adjective-noun ordering
  • Uses language models to score the probability of the sequence being well-formed
  • Distinguishes "artificial intelligence" (high grammaticality) from "intelligence artificial" (low grammaticality in English)
05

Phraseness vs. Informativeness

Phraseness is one of two orthogonal scoring dimensions in keyphrase extraction, alongside informativeness. A candidate must score high on both to be selected.

  • Phraseness: Is it a valid phrase? (linguistic quality)
  • Informativeness: Does it capture the document's topic? (semantic relevance)
  • A sequence like "the quick brown" may have high phraseness but low informativeness, while "quantum chromodynamics" scores high on both in a physics paper
06

C-Value and NC-Value Integration

The C-Value method explicitly incorporates phraseness by evaluating nested multi-word terms. Longer phrases receive higher scores when they appear independently of shorter sub-phrases.

  • C-Value = log₂(|phrase|) × (frequency - average frequency of containing longer phrases)
  • NC-Value extends this with context words that signal termhood
  • These algorithms penalize sequences that only appear as parts of longer terms, improving phraseness precision
PHRASENESS EXPLAINED

Frequently Asked Questions

Clear, technical answers to common questions about phraseness scoring in keyphrase extraction systems.

Phraseness is a linguistic scoring component that measures how well-formed a candidate sequence of words is as a coherent phrase, independent of its topical relevance to the document. It evaluates whether a sequence like "machine learning" constitutes a valid multi-word expression rather than a random collocation like "learning machine the." The score is typically computed using part-of-speech (POS) pattern matching, where sequences matching known noun phrase patterns (e.g., JJ+ NN+ for adjective-noun combinations) receive higher weights. Unlike informativeness, which measures domain specificity, phraseness focuses purely on syntactic and structural well-formedness. This distinction is critical: a candidate can have high phraseness but low informativeness (e.g., "the system") or vice versa (e.g., a domain-specific but grammatically awkward term). Modern systems often combine phraseness with semantic coherence measures derived from word embeddings to filter out syntactically valid but semantically meaningless sequences.

SCORING DIMENSIONS

Phraseness vs. Informativeness

A comparison of the two orthogonal scoring components used to evaluate candidate keyphrases during extraction, distinguishing linguistic well-formedness from topical relevance.

FeaturePhrasenessInformativenessCombined Use

Primary Focus

Linguistic well-formedness

Topical relevance and domain specificity

Holistic keyphrase quality

Measurement Basis

Syntactic structure and collocation statistics

Semantic similarity to document or corpus contrast

Weighted sum or multiplicative fusion

Typical Features

POS patterns, n-gram frequency, stopword boundaries

TF-IDF, embedding similarity, domain specificity

Ensemble of both feature sets

Independent of Document Topic

Handles Out-of-Vocabulary Phrases

Vulnerable to Common Phrases

Example Metric

Pointwise Mutual Information (PMI)

Cosine similarity to document centroid

C-Value

Primary Role in Pipeline

Candidate generation and filtering

Candidate scoring and ranking

Final keyphrase selection

Prasad Kumkar

About the author

Prasad Kumkar

CEO & MD, Inference Systems

Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.

His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.