Lace: AI Training Transparency Protocol - Prevent copyright lawsuits with cryptographic proof
Project description
Lace - AI Training Transparency Protocol
Prevent copyright lawsuits by proving what you DIDN'T train on.
Lace provides cryptographic proof of AI training provenance through loss trajectory monitoring. When model outputs resemble copyrighted content, you can prove definitively whether that content was in your training data.
🚀 Quick Start
pip install lace-client
import lace
# Before training: Create attestation of your dataset
attestation_id = lace.attest("./training_data")
# During training: One-line integration (zero overhead)
lace.monitor() # Automatically hooks into PyTorch/TensorFlow
# After training: Verify training relationship
result = lace.verify(attestation_id)
print(f"Correlation: {result['correlation']['score']:.3f}")
print(f"Legal verdict: {result['correlation']['verdict']}")
🔑 Get Your API Key
All processing happens in our secure cloud infrastructure for IP protection.
Get your free API key: https://withlace.ai/request-demo
export LACE_API_KEY=your_api_key_here
💡 How It Works
- Attestation: Before training, Lace creates a cryptographic fingerprint of your dataset
- Monitoring: During training, Lace captures loss trajectories with zero overhead
- Correlation: After training, Lace proves the training relationship through loss curve analysis
- Legal Evidence: Get legally-sufficient evidence for copyright defense
📊 Integration Examples
HuggingFace Transformers
from transformers import Trainer
import lace
# Create attestation
attestation_id = lace.attest("./data")
# Train with monitoring
trainer = Trainer(model, args, dataset)
monitor = lace.monitor(attestation_id)
trainer.train()
# Get correlation
result = monitor.finalize()
PyTorch
import torch
import lace
# Start monitoring
lace.monitor()
# Your normal training loop
for epoch in range(epochs):
for batch in dataloader:
loss = model(batch)
loss.backward() # Automatically captured!
optimizer.step()
TensorFlow/Keras
import tensorflow as tf
import lace
# Start monitoring
lace.monitor()
# Your normal training
model.fit(x_train, y_train, epochs=10) # Automatically captured!
🛡️ Legal Protection
Lace combines multiple verification methods to provide legally defensible evidence:
- Cryptographic proofs that cannot be forged
- Loss trajectory analysis unique to your dataset
- Behavioral verification across multiple metrics
- Bloom filter checks with 99.99% accuracy
The probability of our verification being wrong is negligible - comparable to DNA evidence in court. When accused of training on copyrighted content, you have definitive proof of what was and wasn't in your dataset.
🏢 Enterprise Features
- Unlimited attestations: No limits on dataset size
- Priority support: Direct email support with SLA
- SLA guarantees: 99.9% uptime commitment
- Custom deployment: On-premise options available
Contact: support@withlace.ai
📖 Documentation
- Docs: https://withlace.ai/docs
- Website: https://withlace.ai
- Examples: Coming soon
🤝 Support
- Email: support@withlace.ai
- Website: https://withlace.ai
📄 License
Apache 2.0 - See LICENSE for details.
Stop worrying about copyright lawsuits. Start building with confidence.
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 lace_client-0.5.4.tar.gz.
File metadata
- Download URL: lace_client-0.5.4.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b0bb5785aea16f0a541008310f46fd4a5ad8afe775e190d0d2c7934a6eade97
|
|
| MD5 |
6ba8aed9464a825f65fe47ac76925c18
|
|
| BLAKE2b-256 |
9efe1355c0ade081a983954baea70058fac225867d56b5ce97de41f682b69e3a
|
File details
Details for the file lace_client-0.5.4-py3-none-any.whl.
File metadata
- Download URL: lace_client-0.5.4-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a2493ebf30b3578d969d748913c821dfe40497970e166875a2b206c39b4394c
|
|
| MD5 |
40a0d8b52ec2048667f051c353f8eb76
|
|
| BLAKE2b-256 |
5288c545024ae486093c0528638efc4caadb22d57b21ea5d62313eb7bb5d4523
|