Local Fine-Tuning of Llama 3.2-1B for Secret Detection Surpasses Wiz's Model

A developer has documented their successful local fine-tuning of Llama 3.2-1B for secret detection in code, surpassing the metrics of a similar model from Wiz. The project was conducted entirely with local AI tools, avoiding proprietary APIs.
Key Results and Approach
The developer aimed to replicate or beat Wiz's results of 86% precision and 82% recall. After a few weekends of work, they achieved 88% precision and 84.4% recall simultaneously with a fine-tuned Llama 3.2-1B model. They also benchmarked Qwen 3.5-2B and 4B models, which outperformed the 1B model at the cost of higher VRAM usage and longer inference times.
Dataset and Training Process
The work relied solely on publicly available data, which was insufficient, so procedural generation was used to augment and improve the dataset. All labeling was done locally using the Qwen3-Coder-Next model. A key training objective was to have the models output structured JSON. Initially, untrained models (Llama & Qwen) scored 0% on schema compliance, but after training, this improved to 98-100%.
Challenges and Learnings
The developer encountered several issues during the process:
- Included a high entropy class that was detrimental to training; this was identified and removed.
- Discovered that 4,500 of the 'negative' samples in the dataset actually contained real-world passwords, meaning the model was being trained to ignore secrets. Fixing this improved recall on passwords.
The developer has published a full technical write-up with training stats, examples, and a step-by-step breakdown of the process.
📖 Read the full source: r/LocalLLaMA
👀 See Also

OpenClaw's Bub AI agent struggles with delegation, burns $20 in 15 minutes during mobile site optimization
During QA for Driftwatch V3, the OpenClaw bot Bub burned $20 in 15 minutes by failing to delegate tasks properly. The developer discovered detailed spec templates reduce costs, while mobile retrofitting added unexpected time and expense.

Developer Builds Cloud Certification Quiz App Using Claude AI
A developer built Kwizeo, a cloud certification quiz app for AWS, GCP, and Azure using Claude AI to generate questions, design progression logic, and accelerate development.

Non-developer builds word chain game in one day using Claude AI
A user with zero coding experience created a complete browser game in one session using Claude AI. The word chain game includes a 74k word dictionary, sound effects, design elements, and a mascot.

How Letting OpenClaw Improve Its Own Environment Creates Sustainable Workspaces
An experienced OpenClaw user found the biggest productivity gain came from allowing the agent to update its own internal docs, edit operating files, refine prompts, build custom tools, write scripts, and document lessons. Their workspace structure includes key markdown files like SOUL.md for behavioral style, AGENTS.md for operational conventions, and MEMORY.md as a lightweight index.