Views
No views yet
wrapped | Parameters: 8.0B | Context: 32,768 tokens | VRAM: ~16GB| Feature | Status |
|---|---|
| Sandboxed training (no network egress) | Yes |
| PII output guardrails | Yes |
| Encrypted training logs | Yes |
| Zero telemetry | Yes |
| DP-SGD training support | Yes |
| Privacy certificate on export | Yes |
1pip install ltce
2ltce pull lattice-ai/gemma-4-e4b-uncensored
3ltce train ./your-data --model gemma-4-e4b-uncensored --epsilon 4.8 --method qlora
4ltce verify ./output/adapter1from ltce import Lattice
2
3lt = Lattice()
4vault = lt.encrypt("./sensitive-data/", password="...")
5result = lt.train(
6 model="gemma-4-e4b-uncensored",
7 data=vault,
8 epsilon=4.8,
9 method="qlora",
10)
11lt.verify(result)