Calculate topic specificity for LDA, LSA & HDP.
Project description
Topic Specificity
Topic Specificity is a measure for evaluating the concentration and distinctness of topics within a document corpus. It quantifies how well each topic stands out from the background noise by comparing document-level topic weights against a corpus-wide threshold. A higher specificity score indicates a topic that is more clearly defined and less diffuse across documents.
This package implements the specificity measure described in:
Yuan, M., Lin, P., Rashidi, L., & Zobel, J. (2023). “Assessment of the Quality of Topic Models for Information Retrieval Applications.” Proceedings of the 9th ACM SIGIR International Conference on the Theory of Information Retrieval (ICTIR ’23), 265–274. DOI: 10.1145/3578337.3605118
Installation
You can install this package locally in editable (development) mode:
pip install -e .
Or, once it is published on PyPI, install it directly:
pip install topic-specificity
Usage Examples
Below are some quick examples showing how to calculate topic specificity scores and Z-scores.
1. Calculate Specificity for All Topics
from topic_specificity import calculate_specificity_for_all_topics
from gensim.models.ldamodel import LdaModel
from gensim.corpora.dictionary import Dictionary
# — assume you have preprocessed texts —
texts = [["human", "interface", "computer"], ["survey", "user", "computer", "system"]]
dictionary = Dictionary(texts)
corpus = [dictionary.doc2bow(text) for text in texts]
# Train a simple LDA model
lda = LdaModel(corpus=corpus, id2word=dictionary, num_topics=2, random_state=42)
# Compute specificity scores
spec_scores = calculate_specificity_for_all_topics(
model=lda,
corpus=corpus,
mode='lda',
threshold_mode='gmm', # options: 'median', 'percentile', 'gmm'
specificity_mode='sqrt' # options: 'diff', 'sqrt'
)
print("Specificity scores:", spec_scores)
2. Calculate Z-Scores (Effect Sizes)
from topic_specificity import calculate_Zi_scores
# Using the same LDA model & corpus as above:
z_scores = calculate_Zi_scores(
model=lda,
corpus=corpus,
mode='lda'
)
print("Z-scores per topic:", z_scores)
3. LSA or HDP Models
The same functions work for LSA or HDP--just change the mode:
from gensim.models.lsimodel import LsiModel
from gensim.models.hdpmodel import HdpModel
# Example for LSA:
lsa = LsiModel(corpus=corpus, id2word=dictionary, num_topics=2)
lsa_scores = calculate_specificity_for_all_topics(lsa, corpus, mode='lsa',
threshold_mode='median',
specificity_mode='diff')
print("LSA specificity:", lsa_scores)
# Example for HDP:
hdp = HdpModel(corpus=corpus, id2word=dictionary)
hdp_scores = calculate_specificity_for_all_topics(hdp, corpus, mode='hdp',
threshold_mode='percentile',
specificity_mode='sqrt')
print("HDP specificity:", hdp_scores)
Citation
If you use topic_specificity in your work, please cite:
@inproceedings{yuan2023assessment,
author = {Yuan, Meng and Lin, Pauline and Rashidi, Lida and Zobel, Justin},
title = {Assessment of the Quality of Topic Models for Information Retrieval Applications},
booktitle = {Proceedings of the 9th ACM SIGIR International Conference on the Theory of Information Retrieval (ICTIR ’23)},
year = {2023},
location = {Taipei, Taiwan},
pages = {265--274},
doi = {10.1145/3578337.3605118},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file topic_specificity-0.1.0.tar.gz.
File metadata
- Download URL: topic_specificity-0.1.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2858275a985adcc2934bc9d60ec156a51dcbe90add48f6faa7815ae01e3435b7
|
|
| MD5 |
1a438b4037cf9e658a24e62962ec8332
|
|
| BLAKE2b-256 |
3953511d971884ca777297a9cf78fc3262049c08c73bd2c991b27087685c5f74
|
File details
Details for the file topic_specificity-0.1.0-py3-none-any.whl.
File metadata
- Download URL: topic_specificity-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c67dc607d3358783c58cccfb5a3a606882696cce9d997c0001c7dc08b0aa55b0
|
|
| MD5 |
1990bf06281826519341972abb28037c
|
|
| BLAKE2b-256 |
3c0283f77e0993607b31dbc60452512fffb70746fa90d5d0103d5764413660b6
|