A command-line tool for masking authorship of text, by changing the writing style with a Large Language Model.
Project description
LLMask [ɛl ɛl 'ma:sk]
A command-line tool for masking authorship of text, by changing the writing style with a Large Language Model.
The main use cases of masking an author's writing style are:
- anonymizing the author of a text
- protecting the identity of whistleblowers and activists
- see more use cases at Adversarial Stylometry
Disclaimer
⚠️ This project currently is just a demo of what LLMs can do for authorship anonymization.
⚠️ There is no strong evidence yet that this tool can beat state of the art de-anonymization methods!
Known Limitations
Despite it's pre-production status, this library has several known limitations:
- Only a limited number of transformations are implemented (see
transform.py
). - Long chains of transformations have observed to make the LLM output artifacts.
- Sensitive content can trigger an LLMs censoring, and thus ruin the output.
In this case it is advised to try uncensored LLMs, e.g. of thewizard-vicuna-uncensored
type. - Currently, unique names of places or persons are not removed/anonymized.
Example workflows
- Locally serve a Large Language Model server with ollama:
$ ollama serve
- Make sure a potent model is served, e.g. a version of
nous-hermes2
:
$ ollama run nous-hermes2:10.7b-solar-q6_K
- Mask your writing style by transforming it into a different one:
$ llmask -v -i "this was a triumph. i'm making a note here: huge success."
User-provided input:
> this was a triumph. i'm making a note here: huge success.
Result after applying transformation 'thesaurus':
> This was an astonishing achievement. I'll jot down: extraordinary victory.
Result after applying transformation 'simplify':
> This was a great success. I'll write down: wonderful win.
Piping input and output
For larger-scale text work, the text input and output can also be piped:
$ cat input.txt | llmask > output.txt
Getting started
System requirements
LLMs can run on ordinary CPUs, e.g. with ollama
.
However, GPU acceleration greatly accelerates execution speed.
Please note that this project is tested most thoroughly on Apple Silicon hardware.
Installation
This command line tool can be installed with: pipx install llmask
Usage options
$ llmask --help
Usage: llmask [OPTIONS]
Transform input text with chained transformations by a Large Language Model.
Options:
-t, --transformations TEXT Sequence of transformations to apply in order,
e.g. 'tsp' for the steps 'thesaurus ->
simplify -> persona', where 't' applies
thesaurus, 's' simplifies, and 'p' imitates a
persona. [default: ts]
-i, --input TEXT Input text that will be transformed.
-p, --persona TEXT Name of persona whose writing style to
imitate. [default: Ernest Hemingway]
-m, --model TEXT Name of model to use (as known to model
server). [default: nous-
hermes2:10.7b-solar-q6_K]
-u, --url TEXT URL of Open AI compatible model API.
[default: http://localhost:11434/v1]
-v, --verbose Verbosity level. At default, only the final
output is returned. [default: 0]
-r, --randomness FLOAT RANGE Higher values make the output more
random.Parameter value is passes as 'sampling
temperature' to language model. [default:
0.5; 0.0<=x<=2.0]
-s, --seed INTEGER Repeated requests with the same `seed` and
parameters should return the same result.
[default: 42]
-h, --help Show this message and exit.
Development setup
Install development environment
The development environment can be installed via: poetry install
.
Roadmap
- support transformations from and into text files
- measure success of obfuscation
- measure success of anonymzation with de-anonymization tools (e.g.
faststylometry
) - check with GPTZero if suspected author is an LLM
- measure success of anonymzation with de-anonymization tools (e.g.
- re-introduce test suite
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
File details
Details for the file llmask-1.1.0.tar.gz
.
File metadata
- Download URL: llmask-1.1.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.6 Linux/6.9.3-76060903-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb4fae9fd648d3a2791fa393e604076530a6415ee434d6b8e5cf593a30752541 |
|
MD5 | aba9c3ee009ec1546da94bd9123e8fce |
|
BLAKE2b-256 | 974a108880b97e2f667200c8f4784d9403fdba8503bd8147ed1070c2c0382fb3 |
File details
Details for the file llmask-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: llmask-1.1.0-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.6 Linux/6.9.3-76060903-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62d7080bf46215669ce62bc25dcbfd01fd718874dac3e088017a9e1b07d9e14d |
|
MD5 | fbaacd1bead7f04ae2c47abb0d88e83d |
|
BLAKE2b-256 | 9799f2521cbdc941f0280dfe3a10120af97651dc52e2f707466d9159803c3fc0 |