Skip to main content

Slimmer version of BERTopic for transforming new data with an existing, trained model.

Project description

Lightopic

This package addresses the specific use case of deploying a BERTopic model that you've trained, and now want to use for transforming new data, e.g. via an API.

This came up for me because I wanted to deploy such a model API but wanted to make the deployment smaller and faster. The BERTopic package is broad, which brings with it a load of dependencies (e.g. torch, a bunch of cuda libraries). So I wrote this as a way to do the transform step only, with a virtual environment that's about 95% smaller than one with the actual BERTopic package.

The main prerequisite is that you need to have trained a BERTopic model separately and have serialised it in a way that's compatible with lightopic. The lightopic package also offers you a way to do that: guidance on how is below. From that point you can instantiate a Lightopic object and use its transform method on new data.

Training and serialising your LightBERTopic model

This is a necessary step: you can't instantiate a Lightopic object without first having trained and serialised your model. To make this part easier the LightBERTopic class is available: this is a child class of bertopic.BERTopic, only with a method added to save_lightopic.

from lightopic.lightbertopic import LightBERTopic
docs = fetch_20newsgroups(subset='all',  remove=('headers', 'footers', 'quotes'))['data']

topic_model = LightBERTopic()
topics, probs = topic_model.fit_transform(docs)
topic_model.save_lightopic("model_directory")

NB. for this to work you must have bertopic installed, which you can do with pip install lightopic[bertopic].

NOTE: this package is still under development, so this required format may (and probably will) change!

Using a Lightopic model

Now the serialised model is ready to use.

from lightopic import Lightopic
topic_model = Lightopic()
topic_model.load("model_directory")
topic_model.transform(embeddings)

This transform step does not rely on BERTopic at all, so it can use the smaller installation you get from pip install lightopic.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lightopic-0.0.3.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

lightopic-0.0.3-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file lightopic-0.0.3.tar.gz.

File metadata

  • Download URL: lightopic-0.0.3.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for lightopic-0.0.3.tar.gz
Algorithm Hash digest
SHA256 105292fde7a2067833ca32b511af9bd5fe915ec136d4e8a44f815fcc58c42282
MD5 3efc5f78ebc329092a54ea3f7c313436
BLAKE2b-256 fe23a3634239cffdfbad3719243c3c3b2e0657bad20c9542a267f4288670c874

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightopic-0.0.3.tar.gz:

Publisher: publish-to-pypi.yml on hamedbh/lightopic

Attestations:

File details

Details for the file lightopic-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: lightopic-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for lightopic-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 bd1bd60e7f863fe4af582adf6bf53bdd47a35c712bfecec81adfd98122de908c
MD5 a316e176075954edea4001c1a035724b
BLAKE2b-256 3bc382fbb43917e978fa7d8aab8837b364c9df8fdc3d2ed11d29a16b28cec499

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightopic-0.0.3-py3-none-any.whl:

Publisher: publish-to-pypi.yml on hamedbh/lightopic

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page