Python port of the Computerized Propositional Idea Density Rater (CPIDR) 3.2.
Project description
pycpidr
Python library port of the Computerized Propositional Idea Density Rater (CPIDR) 3.2.
pycpidr is a Python library that determines the propositional idea density of an English text automatically. This project is a port of the original CPIDR 3.2 software, which was written in C#, to Python for use as a library. The goal is to make this functionality more accessible to Python developers and researchers.
What is Idea Density?
Idea density, also known as propositional density, is a measure of the amount of information conveyed relative to the number of words used. It's calculated by dividing the number of expressed propositions by the number of words. This metric has applications in various fields, including linguistics, cognitive science, and healthcare research.
Installation
Using pip
- Install the package
pip install pycpidr
- Download the required spaCy model:
python -m spacy download en_core_web_sm
Using poetry
poetry add pycpidr
python -m spacy download en_core_web_sm
Usage
Here's a simple example of how to use PyCPIDR:
from pycpidr import rate_text
text = "The quick brown fox jumps over the lazy dog."
word_count, proposition_count, density, word_list = rate_text(text)
print(f"Word count: {word_count}")
print(f"Proposition count: {proposition_count}")
print(f"Idea density: {density:.3f}")
# Analyzing speech
speech_text = "Um, you know, I think that, like, the weather is nice today."
word_count, proposition_count, density, word_list = rate_text(speech_text, speech_mode=True)
print(f"Speech mode - Idea density: {density:.3f}")
# Detailed word analysis
for word in word_list.items:
if word.is_word:
print(f"Token: {word.token}, Tag: {word.tag}, Is proposition: {word.is_proposition}")
Speech Mode
PyCPIDR supports a speech mode that handles common speech patterns and fillers differently from written text. When analyzing transcripts or spoken language, use the speech_mode=True parameter for more accurate results.
Requirements
- Python 3.10+
- spaCy 3.7.5+
Development Setup
To set up the development environment:
- Clone the repository
- Install Poetry if you haven't already:
pip install poetry - Install project dependencies:
poetry install - Install the required spaCy model:
poetry run python -m spacy download en_core_web_sm - Activate the virtual environment:
poetry shell
Running Tests
To run the tests, use pytest:
pytest tests/
Parity with CPIDR 3.2
Because this port uses spaCy as a part-of-speech tagger instead of the original program's MontyLingua, there is a very slight difference in the reported idea density. This port includes unit tests containing 847 words of text. This project: 434 propositions. 0.512 idea density CPIDR 3.2: 436 propositions. 0.515 idea density
For more information about the original CPIDR 3.2, please visit CASPR's official page.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Please ensure that your code passes all tests and follows the project's coding style.
License
This project is licensed under the GNU General Public License v2.0. See the LICENSE file for details.
As this is a port of the original CPIDR 3.2, which was released under GPL v2, this project maintains the same license to comply with the terms of the original software.
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
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 pycpidr-0.1.0.tar.gz.
File metadata
- Download URL: pycpidr-0.1.0.tar.gz
- Upload date:
- Size: 21.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.14 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d7c438cc2bbef311678a775e9c4ae78a038c1729ed1779d7380af1beeb7d0d6
|
|
| MD5 |
cef0cb0a13159bcf72ebd4f4d5a091ab
|
|
| BLAKE2b-256 |
33306038c947d4f8afc6cd56eba87796dde0be4901ba6c9f60dce89c9d932c65
|
File details
Details for the file pycpidr-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pycpidr-0.1.0-py3-none-any.whl
- Upload date:
- Size: 22.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.14 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
126892a06ef1468759da6ade68a23ce8d98d50772731b7a5128ab9864f78cfc1
|
|
| MD5 |
f498918ac55e64d7e80dcba8c6c0fca9
|
|
| BLAKE2b-256 |
779eb0356512f864b9d37e79a7d661879c29bc9d33938d830faf1d634621f737
|