(Bert-)SenClu is a topic modeling technique that leverages sentence transformers to compute topic models.
Project description
Bert-SenClu
(Bert-)SenClu is a topic modeling technique that leverages sentence transformers to compute topic models. For once, it differs from other topic models by using sentences as unit of analysis, i.e., a sentence is assigned to a topic and not a word (like for LDA, TKM) or an entire document (BertTopic). Methods that treat documents as a unit can be faster but they only assign the entire document to one topic, which is different from most classical topic models that produce a document-topic distribution, i.e., a document can contain multiple documents. Our topic model also does not do a dimensionality reduction of embeddings. Inference is based on expectation-maximization, e.g., like for TKM (see TKM Paper and TKM Code).
For an in-depth overview of the features of Bert-SenClu you can check the repository or the paper the paper.
Installation
Installation, with sentence-transformers, can be done using pypi:
pip install bertsenclu
Quick Start
We start by extracting topics from the 20 newsgroups dataset containing English documents:
from sklearn.datasets import fetch_20newsgroups
import numpy as np
from bertSenClu import senClu
docs = fetch_20newsgroups(subset='train', remove=('headers', 'footers', 'quotes')) # get raw data
folder = "modelOutputs/"
topic_model= senClu.SenClu()
topics, probs = topic_model.fit_transform(docs, nTopics=20, loadAndStoreInFolder=folder)
After generating topics and their probabilities, we can save outputs:
>> topic_model.saveOutputs(folder) #Save outputs in folder, i.e. csv-file and visualizations
and look at topics
>>for it,t in enumerate(topics):
print("Topic",it,t[:10])
Topic 0 [encryption, key, ripem, privacy, rsa, clipper, encrypted, escrow, nsa, secure]
Topic 1 [government, militia, amendment, federal, law, constitution, firearm, regulated, administration, clinton]
Topic 2 [launch, satellite, lunar, space, orbit, mission, spacecraft, larson, probe, shuttle]
Topic 3 [patient, hiv, disease, infection, candida, vitamin, antibiotic, diet, symptom, smokeless]
...
We can also use an interactive tool for visualization and topic analysis that runs in a browser. It can be called command line with the folder containing topic modeling outputs:
You need to download the visual.py from the repo first
streamlit run visual.py -- --folder "modelOutputs/"
It can also be called from python:
import subprocess
folder = "modelOutputs/"
subprocess.run("streamlit run visual.py -- --folder "+folder,shell=True)
The interactive visualization looks like this:
If you scroll down (or look into the folder where you stored outputs), you see topic relationship information as well, i.e., a TSNE visualization and a hierarchical clustering of topics:
We can also access outputs directly by accessing functions from the model
>> print("Top 10 words with scores for topic 0",topic_model.getTopicsWitchScores()[0][:10])
Top 10 words with scores for topic 0 [('encryption', 11.269135), ('key', 11.173454), ('ripem', 10.151058), ('privacy', 10.070835), ('rsa', 7.3271174), ('clipper', 6.8211393), ('encrypted', 6.567956), ('escrow', 5.993511), ('nsa', 5.853071), ('secure', 5.4898496)]
>> print("Distribution of topics for document 0", np.round(topic_model.getTopicDocumentDistribution()[0],3))
Distribution of topics for document 0 [0. 0. 1. ... 0. 0. 0.]
>> print("Distribution of topics", np.round(topic_model.getTopicDistribution(), 3))
Distribution of topics [0.022 0.061 0.024 0.026 0.067 0.079 0.155 0.043 0.061 0.039 0.031 0.198
0.018 0.033 0.033 0.012 0.016 0.029 0.033 0.02 ]
>> print("First 4 sentences for top doc for topic 0 with probability and ", topic_model.getTopDocsPerTopic()[0][0][:4])
First 4 sentences for top doc for topic 0 (['[...]>\n', '[...]>\n\n', "If the data isn't there when the warrant comes, you effectively have\n", 'secure crypto. '], 1.0, 8607)
>> print("Top 3 sentences for topic 0 ", topic_model.getTopSentencesPerTopic()[0][:5])
Top 3 sentences for topic 1 [('enforcement.\n\n ', 0.22597079), ('Enforcement. ', 0.22597079), ('to the Constitution.\n\n ', 0.22434217)]
#The sentences show that the sentence partitioning algorithm used is not the best... (It splits based on carriage returns. Still topic modeling results are good. It's also easy to use another one, or preprocess the data
How it works
The steps for topic modeling with Bert-SenClu are
- Splitting docs into sentences
- Embedding the sentences using pretrained sentence-transformers
- Running the topic modeling
- Computing topic-word distributions based on sentence to topic assignments
You can change each algorithm in these steps, especially the algorithm for sentence partitioning as well as the pre-trained sentence embedder. As you saw in the example, the used algorithm for sentence partitioning is not that great for the newsgroup dataset, but the overall result is still good.
The (main) function "fit_transform" has a hyperparameter "alpha" (similar to other models like LDA), which guides the algorithm on how many topics a document should contain. Setting it 0, means that a document likely has few topics. Setting it to 1 (or larger) means it is more likely to have many (for longer documents). As default, you can use 0.5/sqrt(nTopics).
Citation
To cite the Bert-SenClu Paper, please use the following bibtex reference:
@article{schneider23,
title={Efficient and Flexible Topic Modeling using Pretrained Embeddings and Bag of Sentences},
author={Schneider,Johannes},
journal={arXiv preprint arXiv:2302.03106},
year={2023}
}
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
File details
Details for the file bertsenclu-0.1.8.tar.gz
.
File metadata
- Download URL: bertsenclu-0.1.8.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8a5c302ba59cdc967531f139d4ce757e34dcd06cee07fda23bdf67a551e8a2b |
|
MD5 | 821e4f2cfcf6672293d9db3edc425fc2 |
|
BLAKE2b-256 | 12df7eb96747f3957ed7d0014d8c13d26598e9786afcd7c009b8d5b60872332c |
File details
Details for the file bertsenclu-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: bertsenclu-0.1.8-py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e181896992d6ded4dca76aa10b280210083f2defd3ae37c60e0483333bd1b049 |
|
MD5 | bb0f3257e1ba9bf2da4c132133df102a |
|
BLAKE2b-256 | d5f6099fd1ddfcbe0a2eac10664c3c8d67f75b62201e59e91ed461c775fa67a1 |