A state-of-the-art framework for LLM fingerprinting and adversarial testing
Project description
MLprints
A framework for generating, training, and verifying LLM fingerprints.
Quick start
1 - Install
uv sync
Then use uv run mlprints … for the examples below, or activate the environment uv created.
Alternatively, in a virtual environment (with Python ≥ 3.11):
pip install -e .
2 - Set experiments directory
export MLPRINTS_EXPERIMENTS_DIR=/path/to/experiments
Alternatively, pass --experiments-dir to mlprints generate.
Some assets are downloaded on demand and cached locally (no large bundled data tree).
The currently registered fingerprint algorithm is Perinucleus, with training support. Available verifiers are string matching and a watermark z-test.
CLI
| Command | Role |
|---|---|
mlprints generate CONFIG.yaml |
Generate fingerprints; add --train to train in the same run when supported. |
mlprints train CONFIG.yaml --fingerprints-dir DIR |
Train on a previous generate output (DIR must contain fingerprints.yaml). |
mlprints verify CONFIG.yaml --fingerprints DIR --model MODEL |
Verify a model using saved fingerprints. |
Run mlprints <command> --help for command-specific options.
Generate fingerprints example
mlprints generate src/mlprints/configs/fingerprint/perinucleus_config.yaml
Generate and train in one step (algorithms that support training):
mlprints generate src/mlprints/configs/fingerprint/perinucleus_config.yaml --train
Under your experiments root, each run writes:
fingerprints/{algo}/{timestamp}/fingerprints.yamlfingerprints/{algo}/{timestamp}/config.yamlfingerprints/{algo}/{timestamp}/metadata.yaml
Train fingerprints example
mlprints train src/mlprints/configs/fingerprint/perinucleus_config.yaml \
--fingerprints-dir /path/to/fingerprints/{algo}/{timestamp}
Checkpoints and training metadata are written under that fingerprint directory (e.g. trained/.../checkpoints/).
Verify fingerprints example
mlprints verify src/mlprints/configs/verify/match_config.yaml \
--fingerprints /path/to/fingerprints/{algo}/{timestamp} \
--model /path/to/model \
--apply-chat-template
Verification results are written under verification/{timestamp}/.
Grid configs
Wrap any parameter in {grid: [...]} to run every combination:
learning_rate:
grid: [1.0e-5, 2.0e-5]
Generation expands grids under algo.params; training expands algo.training;
verification expands verifier.params and inference. Ordinary YAML lists
remain unchanged. Use --skip-existing to reuse matching runs.
How to add a new fingerprint
- Implement generation (and optional training) in
src/mlprints/fingerprint/. - Register in
FINGERPRINT_ALGOSinsrc/mlprints/common/fingerprints.py. - Add
src/mlprints/configs/fingerprint/<name>_config.yamlwithalgo.name,algo.params, and optionallyalgo.trainingif training is required. - Implement and register a verifier when the scheme needs one.
Contributing
Issues and pull requests are very welcome. For questions, contact edoardo@sentient.xyz.
Disclaimer: Most of the code pushed has been either handwritten, or written with AI on a first passage only then to be severly revised and edited for performance and clarity over countless hours. The end result is a repo that is meant to be very flexible, readable and usable by AI and humans alike. Therefore, any contributions that worsen the standard set will be asked to be revised. Any contributions that improve the standard are very welcome (and such is continuously improved). It is both a means as much as an ends (instead of only the first, in which case we would have spared ourselves plenty of development time).
License
Released under the GNU Affero General Public License v3.0 or later. Full text in LICENSE.
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
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 mlprints-0.1.0a1.tar.gz.
File metadata
- Download URL: mlprints-0.1.0a1.tar.gz
- Upload date:
- Size: 65.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
413cd1f2fa733a52f5abbf9500fce7c44727db8f84acf87dff572431d7d0fb03
|
|
| MD5 |
d801a0305dd756652e4f8d5971bb84c4
|
|
| BLAKE2b-256 |
4a52f0d1960273ff83459330db133bcd7c88eef86cb704699ce785c8e84e9c62
|
File details
Details for the file mlprints-0.1.0a1-py3-none-any.whl.
File metadata
- Download URL: mlprints-0.1.0a1-py3-none-any.whl
- Upload date:
- Size: 77.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9848cde1c57dcb5bc321da7baa6bf8e511ee8b7c20a14252b38a893d3e30d435
|
|
| MD5 |
00f1ef3c111f3b72a6dbb02e178231d2
|
|
| BLAKE2b-256 |
1f8817cc2b82e5004f72395838f51c42e8fac0c050b1373585f8edc0fad8ce6f
|