Skip to main content

WordTangible

PyPI - Version DOI

WordTangible is a simple Python library for analyzing the concreteness and imageability of words and text. This can be useful for various natural language processing tasks, readability analysis, and linguistic research.

Data is pulled from:

  • The Brysbaert dataset (Brysbaert et al., 2014)[1]
  • The Muraki multiword-expression dataset (Muraki et al., 2023)[2]
  • The Glasgow dataset (Scott et al., 2019)[3]
  • The MRC Psycholinguistic Database (Coltheart, 1981; machine-usable dictionary: Wilson, 1988)[4][5]

The default rating is a quality-ordered fallback on a 1-5 scale (5 = most concrete): Brysbaert's raw value when a word is in Brysbaert (the largest single-word source, natively 1-5), otherwise Muraki (multiword expressions, same scale and lab lineage), otherwise Glasgow, otherwise MRC, the latter two linearly rescaled to 1-5. The sources are deliberately not averaged — their normalized distributions have systematically different means, so a linear-rescale average would skew multi-source words rather than reduce noise. This way every value is a real published rating from a single identifiable study (and ~99% of words return Brysbaert's exact published value). The raw per-source ratings, an MRC-free variant, and a mean of the available sources are all accessible via the source parameter (see below).

Features

  • Get concreteness ratings for individual words
  • Choose the ratings source: the default fallback, any single dataset un-normalized (brysbaert, muraki, glasgow, mrc), an MRC-free variant (open) for commercial use, or a normalized mean
  • Rated multiword expressions match as units, longest first: "baseball bat" and "piece of cake" get their own ratings (2,896 Brysbaert compounds + 62,889 Muraki expressions, idioms included) instead of blending their constituent words; disable with match_expressions=False if idiom ratings firing on literal uses ("he ate a piece of cake") is a concern
  • Unrated inflected forms score as their WordNet lemma ("whales" as "whale", "replied" as "reply") — worth ~10 points of token coverage on typical fiction; disable with lemma_fallback=False for values strictly comparable to the published norms
  • Calculate average concreteness for a given text
  • Compute the ratio of concrete to abstract words in a text (with optional add-k smoothing to keep it finite and stable on short texts)
  • Report rating coverage — how much of a text the concreteness mean actually rests on

Installation

You can install WordTangible using pip:

pip install wordtangible

Usage

Here are some basic examples of how to use WordTangible:

from wordtangible import word_concreteness, avg_text_concreteness, concrete_abstract_ratio

# Get concreteness rating for a single word
print(word_concreteness("apple"))  # Output: 5.0 (highly concrete)

# Calculate average concreteness of a text
text = "The abstract concept of love is as tangible as the apple in your hand."
print(avg_text_concreteness(text))  # Output: ~2.9 (mix of concrete and abstract)

# Get the ratio of concrete to abstract words
print(concrete_abstract_ratio(text))  # Output: ~1.0 (balanced concrete and abstract words)

# Smoothed ratio: finite even when a text has no very-abstract words,
# and steadier on short texts (add-k smoothing; default k=0 keeps the
# classic behavior, including float('inf') for the no-abstract case)
print(concrete_abstract_ratio(text, smoothing=1))

# How much of the text the concreteness mean rests on (0.0-1.0):
# a mean at 0.85 coverage is trustworthy; the same mean at 0.12
# (jargon, dialect, names) is noise
from wordtangible import concreteness_coverage
print(concreteness_coverage(text))

Choosing a ratings source

Every function accepts a source parameter:

word_concreteness("apple")               # 5.0   — default fallback, 1-5 scale
word_concreteness("apple", "brysbaert")  # 5.0   — raw Brysbaert, 1-5 scale
word_concreteness("apple", "glasgow")    # 6.824 — raw Glasgow CNC, 1-7 scale
word_concreteness("apple", "mrc")        # 620   — raw MRC CNC, 100-700 scale
word_concreteness("apple", "open")       # 5.0   — like default, but never MRC
word_concreteness("apple", "mean")       # 4.78  — mean of available sources, rescaled to 1-5
word_concreteness("piece of cake")       # 2.8   — Muraki multiword expressions, idioms included

avg_text_concreteness(text, source="open")
  • default — Brysbaert, else Muraki, else Glasgow, else MRC (the latter two rescaled to 1-5).
  • brysbaert / muraki / glasgow / mrc — one dataset's raw, un-normalized values on its native scale; None for words it doesn't rate. Useful for comparing directly against the published norms. If you pass these to concrete_abstract_ratio, adjust its thresholds to the source's scale.
  • open — Brysbaert, else Muraki, else Glasgow: excludes the MRC database, whose terms are "for research purposes" (see licensing below), making this the right choice for commercial products.
  • mean — the mean of whichever of the four rate the word, each linearly rescaled to 1-5. Beware: linear rescaling doesn't fully align the scales (the sources' normalized means differ systematically), so these values aren't comparable to any single set of published norms.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

The WordTangible code is licensed under the MIT License - see the LICENSE file for details.

Data sources & licensing

The bundled ratings file (wordtangible/resources/concreteness_ratings.csv) is derived from third-party datasets, and the MIT license above does not apply to that data. Each source has its own terms:

  • Glasgow Norms (Scott et al., 2019): published open access under a Creative Commons Attribution 4.0 license — redistribution of derived data is permitted with attribution, which the citation below provides.
  • Brysbaert concreteness norms (Brysbaert et al., 2014): made freely available by the authors (via the Behavior Research Methods supplement and the Ghent CRR lab) and widely redistributed in research software; no formal license accompanies the data, so provenance and citation are provided here as is standard practice.
  • Muraki multiword-expression norms (Muraki et al., 2023): distributed by the authors via the paper's OSF repository (osf.io/ksypa), same research-community terms as the Brysbaert norms.
  • MRC Psycholinguistic Database (Coltheart, 1981; Wilson, 1988): the database's distribution terms state that it is available for research purposes. The default ratings fall back to MRC-derived values for the few hundred words none of the other sources rate. If you intend to use WordTangible in a commercial (non-research) product, pass source="open" — it draws only on Brysbaert, Muraki, and Glasgow — or verify the MRC terms for your use case.

The bundled CSV keeps each source's raw rating in its own column, and scripts/build_ratings.py regenerates it from the original datasets (downloaded on demand; the raw files are not stored in this repository).

The lemma fallback additionally uses WordNet (Miller, 1995), which is not bundled either: NLTK downloads it on first use, under the permissive Princeton WordNet license.

This section documents provenance in good faith and is not legal advice.

Citing WordTangible

If you use WordTangible in research, please cite both the tool and the rating datasets your results rest on (all four under the default source; Brysbaert, Muraki, and Glasgow if you use source="open"; the single dataset if you use a raw source). GitHub's "Cite this repository" button generates a citation from CITATION.cff, or use:

Robison, J. (2026). WordTangible (Version 0.6.0) [Computer software]. https://github.com/jrrobison1/wordtangible

@software{robison_wordtangible,
  author  = {Robison, Jason},
  title   = {WordTangible},
  version = {0.6.0},
  year    = {2026},
  url     = {https://github.com/jrrobison1/wordtangible}
}

If your analysis uses the default lemma fallback (lemma_fallback=True), consider also citing WordNet[6], which provides the lemmatization.

Dataset citations are given in full in the References below.

References

[1] Brysbaert, M., Warriner, A. B., & Kuperman, V. (2014). Concreteness ratings for 40 thousand generally known English word lemmas. Behavior Research Methods, 46(3), 904-911. https://doi.org/10.3758/s13428-013-0403-5

[2] Muraki, E. J., Abdalla, S., Brysbaert, M., & Pexman, P. M. (2023). Concreteness ratings for 62,000 English multiword expressions. Behavior Research Methods, 55(5), 2522-2531. https://doi.org/10.3758/s13428-022-01912-6

[3] Scott, G. G., Keitel, A., Becirspahic, M., Yao, B., & Sereno, S. C. (2019). The Glasgow Norms: Ratings of 5,500 words on nine scales. Behavior Research Methods, 51(3), 1258-1270. https://doi.org/10.3758/s13428-018-1099-3

[4] Coltheart, M. (1981). The MRC psycholinguistic database. The Quarterly Journal of Experimental Psychology Section A, 33(4), 497-505. https://doi.org/10.1080/14640748108400805

[5] Wilson, M. (1988). MRC Psycholinguistic Database: Machine-usable dictionary, version 2.00. Behavior Research Methods, Instruments, & Computers, 20(1), 6-10. https://doi.org/10.3758/BF03202594

[6] Miller, G. A. (1995). WordNet: A lexical database for English. Communications of the ACM, 38(11), 39-41. https://doi.org/10.1145/219717.219748

Download files

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

Source Distribution

wordtangible-0.6.0.tar.gz (764.7 kB view details)

Uploaded Source

Built Distribution

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

wordtangible-0.6.0-py3-none-any.whl (769.0 kB view details)

Uploaded Python 3

File details

Details for the file wordtangible-0.6.0.tar.gz.

File metadata

  • Download URL: wordtangible-0.6.0.tar.gz
  • Upload date:
  • Size: 764.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wordtangible-0.6.0.tar.gz
Algorithm Hash digest
SHA256 85c5c12db031d3bd1c48914392f4673818cc1c193a499a32115cef1f2837a337
MD5 e4d5843205e2bd3f3e95b16b3f5f5ced
BLAKE2b-256 f7fe678214bc60f68ccbe481368e13f13ec46afed06d6d3c7ac6306ba7756335

See more details on using hashes here.

Provenance

The following attestation bundles were made for wordtangible-0.6.0.tar.gz:

Publisher: publish-to-pypi.yml on jrrobison1/wordtangible

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wordtangible-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: wordtangible-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 769.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wordtangible-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f49aceed15066f09ffece645bfb0df2c8b041cd967c7f7b36211e1b2164d5463
MD5 2789bbd2a0946879e2118f7e66c4e188
BLAKE2b-256 09d310d0b42fd46b43e3ad2dca7c3d54c88825593f486333c8fcdcd1bb8ad494

See more details on using hashes here.

Provenance

The following attestation bundles were made for wordtangible-0.6.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on jrrobison1/wordtangible

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.6.0 This release

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

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