Fine-tuning llama3.2 3B for personalized health coaching using Apple Watch data and MLX

A developer created a personalized health coach LLM by fine-tuning llama3.2 3B on a Mac using Apple Health and Whoop data. The entire fine-tuning process took approximately 15 minutes using MLX.
Technical pipeline
The implementation follows this workflow:
- Apple Health and Whoop data stored in local SQLite database
- SQL RAG layer converts natural language queries to SQL
- Claude API used once to generate ~270 gold-standard training examples (anonymized question/SQL/result pairs, no personal health data sent)
- LoRA fine-tuning on llama3.2 3B via MLX
- Fused model served locally at 127.0.0.1:8080
Before vs. after fine-tuning
The source provides concrete examples of the improvement:
Before fine-tuning: "Your HRV is an important measure of autonomic nervous system function..." [500 words of generic advice]
After fine-tuning: "Your HRV averaged 68ms this week, down 12% from last week's 77ms. Coincides with 3 nights under 7 hours sleep. Consider reducing training intensity for 48 hours."
Memory footprint and hardware
- Model (4-bit): ~2 GB
- LoRA adapter: ~50 MB
- Training memory: ~4-5 GB total
- Runs on M-series Mac, no GPU needed
The developer mentions including technical details on SQL hallucination guardrails, cross-metric context enrichment, and the training pipeline in their full writeup. They also offer to answer questions about the MLX setup or RAG layer implementation.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Local Reddit Clone for AI Agents Improves Code Quality and Testing
A developer built a local Reddit clone called 'community center' for AI agents to post task updates, blockers, and issues. Agents interact only during heartbeats and task work crons, with notifications when mentioned or posts receive new activity.

Coordinating Multiple AI Agents: Discord, Cron Jobs, and Clear Hierarchy
A developer running three OpenClaw agents solved coordination problems by using Discord as a shared communication channel, replacing Paperclip's expensive heartbeat system with per-agent cron jobs, and establishing a clear leadership hierarchy between Claude Max and OpenAI models.

Practical OpenClaw Use Cases from the LocalLLaMA Community
A Reddit post details specific ways developers are using OpenClaw for tasks like automated cold outreach, SEO content updates, social media captioning, server monitoring, and receipt processing.

SkiTomorrow.ai: A Ski Trip Decision Engine Built with Claude Code
SkiTomorrow.ai is a free web tool that scores 234 ski resorts worldwide based on live snow forecasts, travel distance, and cost, then provides personalized rankings. The developer built it entirely using Claude Code and shared specific workflow insights.