A Python Package for NLP Obfuscation using Differential Privacy
Project description
pyPANTERA
A Python Package for nAtural laNguage obfuscaTion Enforcing pRivacy & Anonymization
What is pyPANTERA?
pyPANTERA[^1] is a Python package that provides a simple interface to obfuscate natural language text. It is designed to help developers and data scientists to implement, reproduce and test State-of-the-Art techniques for natural language obfuscation that implements $\varepsilon$ -Differential Privacy. The package is built using numpy, pandas, and scikit-learn libraries, and it is designed to be easy to use and integrate with other Python packages.
The package offers a combination of natural language processing and mathematical transformations to obfuscate natural language text. It replaces the original string texts with their obfuscated versions, ensuring that the obfuscated text is not directly related to the original text. The obfuscation is performed using word embeddings and word sampling mechanisms, and it is designed to be $\varepsilon$-Differential Privacy compliant.
Virtual Environment
We provide also a virtual environment to run the package:
- You can create the virtual environment virtualEnvPyPANTERA using the
environment.yml
file, and running in your terminal:
conda env create -f environment.yml
- Once the environment is created, you can verify that it is installed by running:
conda env list
- Finnally, you can activate the virtual environment by running:
conda activate virtualEnvPyPANTERA
In the requirements.txt
file you can find the list of the packages exported from the virtual environment.
How to use pyPANTERA?
pyPANTERA is designed to be easy to use and accessible for everyone. You can install it using pip:
pip install pypantera
Once installed, you can use it in your Python code by importing it as follows:
import pypantera
What can pyPANTERA do?
pyPANTERA implements current State-of-the-Art mechanisms that uses $\varepsilon$-Differential Privacy to obfuscate natural language text.
The mechansims implemented in pyPANTERA are divided in two categories:
-
Word Embeddings Perturbation: This mechanism uses word embeddings to obfuscate the text. It replaces the original words ebeddings with a perturbated version of them. Such perturbation is done by adding a statistical noise depending on the mechansim design. The mechansim implemented are the following:
- Calibrated Multivariate Perturbations (CMP): Addition of sferical noise to the word embeddings. See reference [^2] for more information.
- Mahalanobis Perturbations (Mahalanobis): Addition of eliptical noise to the word embeddings. See reference [^3] for more information.
- Vickrey family of mechanisms (Vickrey): Perturbation performed using a treshold value to select the nearest perturbed embedding of a term. See reference [^4] for more information.
-
Word Sampling Perturbation: This mechanism uses word sampling to obfuscate the text. The mechanism computes for each word in the text a list of neighbouring words with the respective scores, then it samples a substitution candidate from basing such sampling on the scores of the neighbouring terms and teh privacy budget $\varepsilon$. The mechansim implemented are the following:
- Customized Text (CusText): Sampling of the substitution candidate from the neighbouring $k$ words of the original word. See reference [^5] for more information.
- Sanitization Text (SanText): Sampling of the substitution candidate from the neighbouring words of the original word. See reference [^6] for more information.
- Truncated Exponential Mechanism (TEM): Sampling of the substitution candidate using the exponential mechanism with the scores of the neighbouring words. See reference [^7] for more information.
How does pyPANTERA work?
We provide a simple example to show how pyPANTERA works with a concrete example. We suggest to use the prepared virtual environment to run the example and the base script test.py
to run the obfuscation pipeline.
python test.py --embPath /absolute/path/to/embeddings --inputPath /absolute/path/to/input/data --outputPath /absolute/path/to/output/data --mechanism MECHANISM --epsilon EPSILON --task TASK --numberOfObfuscations N --PARAMETERS
The script will run the obfuscation pipeline using the embeddings in the path provided in the --embPath | -eP
argument, the input data in the path provided in the --inputPath | -i
argument, and --outputPath | -o
is used as output path for storing the results. If --outputPath
is not provided, it creates a folder ./results/task/mechanism/
to save the obfuscated data frames.
pyPANTERA requires that the input data is a CSV file with a column named text
that contains the text to obfuscate and an id
to keep trace of the correspondance between original and obfuscated versions.
The --task | -tk
argument is used to specify the future task that you want to perform using the new obfuscated texts. The --epsilon | -e
argument is used to specify the epsilon value for the differential privacy mechanism. The --mechanism | -m
argument is used to specify the mechanism to use for the obfuscation. The --numberOfObfuscations | -n
argument is used to specify the number of obfuscations to perform for the same text. Finally, the --PARAMETERS
are the parameters for the mechanism that you want to use. We provide a specific list of parameters for each mechanism in the following section.
UML of pyPANTERA
The UML diagram of the pyPANTERA source code is displayied below:
Prameters
The script test.py
has the following parameters, based on the mechanism parameters that you want to use:
-
General Parameters:
--embPath | -eP
: The path to the word embeddings file (default str: None, required)--inputPath | -i
: The path to the input data file (default str: None, required)--outputPath | -o
: The path to the output data file (default str: None)--task | -tk
: The future task that you want to perform using the new obfuscated texts (default str: 'retrieval')--epsilon | -e
: The epsilon value for the differential privacy mechanism (default List[float]: [1.0, 5.0, 10.0, 12.5, 15.0, 17.5, 20.0, 50.0])--mechanism | -m
: The mechanism to use for the obfuscation (default str: 'CMP', choices: ['CMP', 'Mahalanobis', 'VickreyCMP', 'VickreyMhl', 'CusText', 'SanText', 'TEM'])--numberOfObfuscations | -n
: The number of obfuscations to perform for the same text (default int: 1)
-
CMP: The parameters for the CMP mechanism are only the general ones.
-
Mahalanobis: The parameters for the Mahalanobis mechanism are the following:
--lam
: The lambda value for the Mahalanobis norm (default float: 1)
-
VickreyCMP/VickreyMhl: The parameters for the Vickrey mechanism are the following:
--t
: The treshold value for the Vickrey mechanism (default float: 0.75). Eventually, if you use theVickreyMhl
mechanism, you can also use the--lam
parameter to set the lambda value for the Mahalanobis norm (default float: 1)
-
CusText: The parameters for the CusText mechanism are the following:
--k
: The number of neighbouring words to consider for the sampling (default int: 10)--distance | -d
: The distance metric to use for the sampling (default str: 'euclidean')
-
SanText: The parameters for the SanText mechanism are only the general ones.
-
TEM: The parameters for the TEM mechanism are the following:
--beta
: The beta value for the exponential mechanism (default float: 0.001)
Example
Suppose you want to run the obfuscation pipeline using the CMP
mechanism with the embeddings in the path ./embeddings/glove.6B.50d.txt
, the input data in the path ./data/input.csv
, and the output data in the path ./data/output.csv
, for all the default values of $\varepsilon$ obtaining only one obfuscation for the original text. You can run the following command:
python test.py --embPath /embeddings/glove.6B.50d.txt --inputPath /data/input.csv --outputPath /data/output/ --mechanism CMP
To enhance the clarity of how pyPANTERA works, we add a toy Python Notebook to simulate some of the obfuscation implemented.
Final results overview
Using the test.py
script running CMP, embeddings 300d GloVe with the default parameters, we obtain the following results for the DL'19 queries dataset (overview of the first two rows, for $\varepsilon = 1, 5, 10$):
id | text | obfuscatedText | mechansim | epsilon |
---|---|---|---|---|
156493 | do goldfish grow | hipc householder 1976-1983 | CMP | 1 |
1110199 | what is wifi vs bluetooth | 25-june nonsubscribers trimet edema --- | CMP | 1 |
id | text | obfuscatedText | mechansim | epsilon |
---|---|---|---|---|
156493 | do goldfish grow | foil householder scotland | CMP | 5 |
1110199 | what is wifi vs bluetooth | galangal naat trimet edema --- | CMP | 5 |
id | text | obfuscatedText | mechansim | epsilon |
---|---|---|---|---|
156493 | do goldfish grow | do goldfish grow | CMP | 10 |
1110199 | what is wifi vs bluetooth | out salvage terrestrial 7-3 bluetooth | CMP | 10 |
License
The package is released under the GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007. You can find the full text of the license in the LICENSE file.
[^1]: Prompt for DALL-E pyPANTER generation: "A cute panther sitting beside the Python programming language symbol. The panther should have big, expressive eyes and a friendly demeanor, sitting in."
[^2]: Privacy- and Utility-Preserving Textual Analysis via Calibrated Multivariate Perturbations (Feyisetan et al., In Proceedings of the International Conference on Web Search and Data Mining, 2020)
[^3]: A Differentially Private Text Perturbation Method Using Regularized Mahalanobis Metric (Xu et al., In Proceedings of the Second Workshop on Privacy in NLP, 2020)
[^4]: On a Utilitarian Approach to Privacy Preserving Text Generation (Xu et al., In Proceedings of the Third Workshop on Privacy in Natural Language Processing, 2021)
[^5]: A Customized Text Sanitization Mechanism with Differential Privacy (Chen et al., In Findings of the Association for Computational Linguistics, 2023)
[^6]: Differential Privacy for Text Analytics via Natural Text Sanitization (Yue et al., In Findings of the Association for Computational Linguistics, 2021)
[^7]: TEM: High Utility Metric Differential Privacy on Text (Carvalho et al., In Proceedings of the 2023 SIAM International Conference on Data Mining, 2023)
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
Hashes for pypantera-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b2507b22de035152c7ccb6305fd5464d59cd72cb15e6a2d013be9d62da3e19a |
|
MD5 | 1d0611aaca93267ea3ede536ed245ce8 |
|
BLAKE2b-256 | a5b7022f0d97aaeb3c06d19cacb3377963f27af95ae41448bf17634c9683558d |