Add noise to text at the character level
Project description
textnoisr
: Adding random noise to a dataset
textnoisr
is a python package that allows to add random noise to a text dataset,
and to control very accurately the quality of the result.
Here is an example if your dataset consists on the first few lines of the Zen of python:
Raw text
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
...
Noisy text
TheO Zen of Python, by Tim Pfter
BzeautiUful is ebtter than ugly.
Eqxplicin is better than imlicit.
Simple is beateUr than comdplex.
Complex is better than comwlicated.
Flat is bejAter than neseed.
...
Four types of "actions" are implemented:
- insert a random character, e.g. STEAM → STREAM,
- delete a random character, e.g. STEAM → TEAM,
- substitute a random character, e.g. STEAM → STEAL.
- swap two consecutive characters, e.g. STEAM → STEMA
The general philosophy of the package is that only one single parameter is needed to control the noise level. This "noise level" is applied character-wise, and corresponds roughly to the probability for a character to be impacted.
More precisely, this noise level is calibrated so that the Character Error Rate of a noised dataset converges to this value as the amount of text increases.
Why a whole package for such a simple task?
In the case of inserting, deleting and substituting characters at random with a probability $p$, the Character Error Rate is only the average number of those operations, so it will converge to the input value $p$ due to the Law of Large Numbers.
However, the case of swapping consecutive characters is not trivial at all for two reasons:
First, swapping two characters is not an "atomic operation" with respect to the Character Error Rate metric.
Second, we do not want to swap repeatedly the same character over and over again if the probability to apply the swap action is high:
STEAM → TSEAM
TSEAM → TESAM
TESAM → TEASM
TEASM → TEAMS
This would be equivalent to STEAM → TEAMS, so this cannot be considered "swapping consecutive characters". To avoid this behavior, we must avoid swapping a character if it has just been swapped. This breaks the independency between one character and the following one, and makes the Law of Large Numbers not applicable.We use Markov Chains to model the swapping of characters. This allows us to compute and correct the corresponding bias in order to make itstraightforward for the user to get the desired Character Error Rate, as if the Law of Large Number could beapplied!
All the details of this unbiasing are here. The goal of this package is for the user to be confident on the result without worrying about the implementation details.
The documentation follows this plan:
- You may want to follow a quick tutorial to learn the basics of the package,
- The Results page illustrates how no calibration is needed in order to add noise to a corpus with a target Character Error Rate.
- The How this works section explains the mechanisms, and some design choices of this package.
We have been extra careful to explain how some statistical bias have been avoided,
for the package to be both user-friendly and correct.
A dedicated page deeps dive in the case of the
swap
action. - The API Reference details all the technical descriptions needed.
There is also a Medium article about this project.
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 textnoisr-1.1.1.tar.gz
.
File metadata
- Download URL: textnoisr-1.1.1.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de2b510a05f9771fe85e7b76cfb4d8a1b944176ed52ba34c47fdbd2d907f1e1b |
|
MD5 | 809f97f244ebd41f56efbddc2e8ac0a9 |
|
BLAKE2b-256 | b0c7f909cee8b92766ef5403c13afebdcb2fdac564afc55fb74f4ad0a585f653 |
File details
Details for the file textnoisr-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: textnoisr-1.1.1-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e99b545fdb51aeb2120ba3a849633a2d870da1329d657f43d5286758aeb3f339 |
|
MD5 | aa6b522ddb1a8ac8cf525fea260f733a |
|
BLAKE2b-256 | 77e5cfff5334d0d9877d036697d0098bc52b9686073e2761ee32f9d16ab55725 |