Skip to main content

WordReduce

Last updated: 11th September, 2026

This package implements two classes, WordReduce and WordReduceLabeler, that can be used in Natural Language Processing (NLP) for (i) self-supervised explicit dimensionality reduction, (ii) parameter-free clustering, and (iii) self-supervised multilabel classification.

Key concept

WordReduce encodes a collection of raw texts (unstructured data) into a matrix (structured data) with a pre-defined number of dimensions.

The user is expected to provide the desired target of output dimensions. WordReduce then determines which words in the document collection best summarize the data, and maps all documents into the set of coordinates defined by those words.

Installation

From PyPI:

pip install wordreduce

From source (development):

git clone https://github.com/JordiCarreraVentura/wordreduce
cd wordreduce
pip install -e .

Optional dependency groups:

pip install wordreduce[test]     # pytest, requests
pip install wordreduce[build]    # build, twine

Usage

Preprocessing raw texts into "retokenized" documents

The examples below all take retokenized documents as input: single strings of space-joined tokens. Use the included tokenizer to go from raw text to that form — it lowercases, strips accents (unidecode), and keeps only letters and spaces:

from wordreduce.natural_text_tokenizer import tokenize

retokenized = [" ".join(tokenize(text)) for text in texts]

A "retokenized" document is thus a lowercase, accent-free string of tokens, e.g. "the quick brown fox".

Low-dimensional Vectorization

from wordreduce import WordReduce
wrl = WordReduce(schema_size=100, max_df=0.01, min_df=10)
low_dim_matrix = wrl.fit_transform(retokenized)

Multilabel Classification

from wordreduce import WordReduceLabeler
wrl = WordReduceLabeler(schema_size=100, max_df=0.01, min_df=10)
bags_of_words = wrl.fit_transform(retokenized)

Clustering

from wordreduce import WordReduceLabeler
wrl = WordReduceLabeler(schema_size=100, max_df=0.01, min_df=10)
cluster_ids = wrl.fit_clusterize(retokenized)

Technical Description

Motivation: feature selection versus dimensionality reduction

Linguistic data can be transformed into structured data trivially using the Bag-of-Words (BOW) model. However, the resulting representations are high-dimensional, and cannot be easily used for other types of analysis in the context of data science problems.

High-dimensional spaces can be transformed into low-dimensional ones using dimensionality reduction techniques (e.g. LDA, PCA, NMF, SVD). However, these methods work by projecting an observable space onto a latent space and, as a result, end up as black boxes: the original structure is lost, along with its meaning, which again hampers further analysis.

WordReduce addresses this problem by returning an observable space of the desired dimensionality. Hence, it performs dimensionality reduction while also retaining explainability and interpretability. The exact methodology is described in detail below.

How does it work?

WordReduce

WordReduce bridges the gap between feature selection and dimensionality reduction by applying the following steps:

  1. Vectorization of the input dataset into a BoW-TFIDF representation (by default).
  2. Dimensionality reduction on the vectorized dataset (Non-Negative Matrix Factorization by default).
  3. k-bins discretization of the latent topography resulting from the previous step. This lowers its resolution through implicit clustering and serves as a simpler version of product quantization.
  4. Supervised learning of a feature selection model (a decision tree in the current implementation) using the quantized embeddings as the dependent variable. Each unique discretization is encoded categorically nominally.
  5. Feature selection on the original input matrix using the decision tree trained on the preceding step to select units from the input representation obtained in the first step, down to the target dimensionality requested by the user.
WordReduceLabeler

WordReduceLabeler builds on top of WordReduce: it implicitly invokes WordReduce to perform steps 1-5, but then returns a different output. Two options are available:

  1. When this class' transform or fit_transform methods are invoked, the class takes the original dataset as input and, for every document, returns the list of words in that document that were selected as features for describing the data.
  2. When the class' clusterize or fit_clusterize methods are invoked, for every input document an integer is returned, corresponding to that document's discretization as computed by step 3 above.

Questions

  • Why parameter-free clustering? Unlike e.g. k-means, where the number of clusters k must be provided by the user, WordReduce relies on the discretization step and infers the target number of clusters empirically as a byproduct of that step.
  • Why not feature selection? Because the output dimensions are not a subset of the input dimensions. No dimensions are expected as input.
  • Why not dimensionality reduction? Because the output dimensions are transparent and interpretable. The latent topography is only used for self-supervision, and it is not used as the output schema.

Testing

Install test dependencies first:

pip install wordreduce[test]

Then run tests:

cd wordreduce
python -m tests.wordreduce
pytest tests/wordreduce.py
pytest tests/*

Note: the test suite downloads the EmoBank corpus on first run (network required). Set the WORDREDUCE_EMOBANK_URI environment variable to point at an alternative copy.

Build

Instructions for building the package

  1. Install build tools: pip install wordreduce[build]
  2. Building the package before uploading: python -m build (from "wordreduce").
  3. Upload the package to pypi: python -m twine upload --repository {pypi|testpypi} dist/*
  4. Install the package from pypi: python -m pip install --index-url {https://test.pypi.org/simple|https://pypi.org/simple} --no-deps wordreduce
  5. If any dependencies are required, edit the pyproject.toml file, "[project]" field, and add a dependencies key with a List[str] value, where each string is a pip-readable dependency.

Download files

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

Source Distribution

wordreduce-0.0.5.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wordreduce-0.0.5-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file wordreduce-0.0.5.tar.gz.

File metadata

  • Download URL: wordreduce-0.0.5.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.9

File hashes

Hashes for wordreduce-0.0.5.tar.gz
Algorithm Hash digest
SHA256 d2e7de45aa66558f58f0f9f0fdf2297318ec5cf26273c3b83e9a7062871cb702
MD5 e58aa9bd9fc2d53eae62bba00236071d
BLAKE2b-256 beda2ebefcd7d4c57a0b2c4f5f875a29c95ec7a482483d3dac7b0723de34d912

See more details on using hashes here.

File details

Details for the file wordreduce-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: wordreduce-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.9

File hashes

Hashes for wordreduce-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 73971adf46d8992d4a4e154fa280002844f7010bba40644580a06d169ac43078
MD5 d758f033d9fd8d66deb38a82ace549ca
BLAKE2b-256 f99d754d9819096654a7a5dd91132ca20885e2bdac38665f819aa77577ab4d34

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.0.5 This release

2 files

0.0.4

2 files

0.0.3

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page